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.

54 lines
920B

  1. SRCS= \
  2. Waveform.C \
  3. Region.C \
  4. main.C \
  5. Fl_Menu_Settings.C \
  6. TLE.C \
  7. Sequence.C \
  8. Audio_Sequence.C \
  9. Control_Sequence.C \
  10. Timeline.C \
  11. Track.C \
  12. Sequence_Widget.C \
  13. Sequence_Point.C \
  14. Tempo_Point.C \
  15. Time_Point.C \
  16. Peaks.C \
  17. Audio_File.C \
  18. Audio_File_SF.C \
  19. Port.C \
  20. Disk_Stream.C \
  21. Playback_DS.C \
  22. Record_DS.C \
  23. dsp.C \
  24. Engine.C \
  25. Transport.C \
  26. Loggable.C \
  27. OBJS:=$(SRCS:.C=.o)
  28. # OBJS:=$(OBJS:.c=.o)
  29. INCLUDES=-I../Engine -I../FL
  30. .PHONEY: all clean install dist valgrind
  31. all: timeline
  32. $(OBJS): Makefile
  33. include ../make.inc
  34. #LIBS:=$(LIBS) -ljack -lpthread
  35. timeline: $(OBJS)
  36. $(CXX) $(CXXFLAGS) $(INCLUDES) $(LIBS) -ljack -lpthread $(OBJS) -o $@ -L../FL -lfl_widgets
  37. clean:
  38. rm -f $(OBJS) timeline makedepend
  39. valgrind:
  40. valgrind ./timeline
  41. include makedepend