non/Timeline/Makefile

38 lines
594 B
Makefile

SRCS= \
Waveform.C \
Region.C \
main.C \
Track.C \
Audio_Track.C \
Timeline.C \
Track_Header.C \
Track_Widget.C \
../Engine/Audio_File.C \
../Engine/Audio_File_SF.C \
../Engine/Peaks.C \
../Engine/Loggable.C \
OBJS=$(SRCS:.C=.o)
INCLUDES=-I../Engine -I../FL
.PHONEY: all clean install dist valgrind
all: timeline
$(OBJS): Makefile
include ../make.inc
timeline: $(OBJS)
$(CXX) $(CXXFLAGS) $(INCLUDES) $(LIBS) $(OBJS) -o $@
clean:
rm -f $(OBJS) timeline makedepend
valgrind:
valgrind ./test
include makedepend