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.

45 lines
692B

  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. dsp.c \
  16. Engine.C \
  17. Transport.C \
  18. Loggable.C \
  19. OBJS=$(SRCS:.C=.o)
  20. INCLUDES=-I../Engine -I../FL
  21. .PHONEY: all clean install dist valgrind
  22. all: timeline
  23. $(OBJS): Makefile
  24. include ../make.inc
  25. #LIBS:=$(LIBS) -ljack -lpthread
  26. timeline: $(OBJS)
  27. $(CXX) $(CXXFLAGS) $(INCLUDES) $(LIBS) -ljack -lpthread $(OBJS) -o $@
  28. clean:
  29. rm -f $(OBJS) timeline makedepend
  30. valgrind:
  31. valgrind ./test
  32. include makedepend