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.

34 lines
440B

  1. SRCS= \
  2. DPM.C \
  3. Mixer_Strip.C \
  4. Panner.C \
  5. Mixer.C \
  6. OBJS := $(SRCS:.C=.o)
  7. LIBS := $(LIBS) -L../FL -lfl
  8. INCLUDES=-I..
  9. CXXFLAGS := $(CXXFLAGS) -fPIC
  10. .PHONEY: all clean install dist valgrind
  11. all: mixer
  12. $(OBJS): Makefile
  13. include ../make.inc
  14. mixer: $(OBJS)
  15. $(CXX) $(CXXFLAGS) $(LIBS) $(OBJS) -o $@ -L../FL -lfl_widgets
  16. clean:
  17. rm -f $(OBJS) mixer makedepend
  18. valgrind:
  19. valgrind ./test
  20. include makedepend