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.

36 lines
525B

  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. Peak_Client.C \
  11. ../Engine/Loggable.C \
  12. OBJS=$(SRCS:.C=.o)
  13. INCLUDES=-I../Engine -I../FL
  14. .PHONEY: all clean install dist valgrind
  15. all: timeline
  16. $(OBJS): Makefile
  17. include ../make.inc
  18. timeline: $(OBJS)
  19. $(CXX) $(CXXFLAGS) $(INCLUDES) $(LIBS) $(OBJS) -o $@
  20. clean:
  21. rm -f $(OBJS) timeline makedepend
  22. valgrind:
  23. valgrind ./test
  24. include makedepend