non/Timeline/Makefile

53 lines
895 B
Makefile
Raw Normal View History

2008-03-20 08:13:45 +01:00
SRCS= \
Waveform.C \
Region.C \
main.C \
2008-04-24 23:09:17 +02:00
Fl_Menu_Settings.C \
2008-04-23 04:22:46 +02:00
TLE.C \
2008-04-19 06:16:21 +02:00
Sequence.C \
Audio_Sequence.C \
Control_Sequence.C \
2008-03-20 08:13:45 +01:00
Timeline.C \
2008-04-19 06:16:21 +02:00
Track.C \
Sequence_Widget.C \
Tempo_Point.C \
Time_Point.C \
Peaks.C \
Audio_File.C \
Audio_File_SF.C \
2008-04-07 12:00:16 +02:00
Port.C \
Disk_Stream.C \
Playback_DS.C \
Record_DS.C \
dsp.C \
Engine.C \
2008-04-12 21:50:36 +02:00
Transport.C \
Loggable.C \
2008-03-20 08:13:45 +01:00
OBJS:=$(SRCS:.C=.o)
# OBJS:=$(OBJS:.c=.o)
2008-03-20 08:13:45 +01:00
INCLUDES=-I../Engine -I../FL
.PHONEY: all clean install dist valgrind
all: timeline
$(OBJS): Makefile
include ../make.inc
2008-04-07 12:00:16 +02:00
#LIBS:=$(LIBS) -ljack -lpthread
2008-03-20 08:13:45 +01:00
timeline: $(OBJS)
$(CXX) $(CXXFLAGS) $(INCLUDES) $(LIBS) -ljack -lpthread $(OBJS) -o $@ -L../FL -lfl_widgets
2008-03-20 08:13:45 +01:00
clean:
rm -f $(OBJS) timeline makedepend
valgrind:
2008-04-28 18:48:35 +02:00
valgrind ./timeline
2008-03-20 08:13:45 +01:00
include makedepend