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.

31 lines
422B

  1. SRCS= \
  2. Server.C \
  3. Timeline_Server.C \
  4. main.C \
  5. Audio_File.C \
  6. Audio_File_SF.C \
  7. Peaks.C \
  8. Loggable.C \
  9. OBJS=$(SRCS:.C=.o)
  10. .PHONEY: all clean install dist valgrind
  11. all: engine
  12. $(OBJS): Makefile
  13. include ../make.inc
  14. engine: $(OBJS)
  15. $(CXX) $(CXXFLAGS) $(INCLUDES) $(LIBS) $(OBJS) -o $@
  16. clean:
  17. rm -f $(OBJS) engine makedepend
  18. valgrind:
  19. valgrind ./test
  20. include makedepend