Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
678B

  1. SRCS= \
  2. Waveform.C \
  3. Region.C \
  4. main.C \
  5. Track.C \
  6. Audio_Track.C \
  7. Timeline.C \
  8. Track_Header.C \
  9. Track_Widget.C \
  10. Peaks.C \
  11. Audio_File.C \
  12. Audio_File_SF.C \
  13. Port.C \
  14. Disk_Stream.C \
  15. Engine.C \
  16. Transport.C \
  17. Loggable.C \
  18. OBJS=$(SRCS:.C=.o)
  19. INCLUDES=-I../Engine -I../FL
  20. .PHONEY: all clean install dist valgrind
  21. all: timeline
  22. $(OBJS): Makefile
  23. include ../make.inc
  24. #LIBS:=$(LIBS) -ljack -lpthread
  25. timeline: $(OBJS)
  26. $(CXX) $(CXXFLAGS) $(INCLUDES) $(LIBS) -ljack -lpthread $(OBJS) -o $@
  27. clean:
  28. rm -f $(OBJS) timeline makedepend
  29. valgrind:
  30. valgrind ./test
  31. include makedepend