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.

24 lines
422B

  1. # -*- mode: makefile; -*-
  2. Mixer_SRCS= \
  3. Mixer/DPM.C \
  4. Mixer/Mixer_Strip.C \
  5. Mixer/Panner.C \
  6. Mixer/Mixer.C \
  7. Mixer_OBJS := $(Mixer_SRCS:.C=.o)
  8. Mixer_LIBS := $(FLTK_LIBS)
  9. INCLUDES := -I.
  10. Mixer/mixer: $(Mixer_OBJS) FL
  11. @ echo -n Linking mixer...
  12. @ $(CXX) $(CXXFLAGS) $(Mixer_LIBS) $(Mixer_OBJS) -o $@ -LFL -lfl_widgets && echo $(DONE)
  13. .PHONEY: Mixer
  14. Mixer: Mixer/mixer
  15. Mixer_clean:
  16. rm -f $(Mixer_OBJS) Mixer/mixer