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.

22 lines
350B

  1. Mixer_SRCS= \
  2. Mixer/DPM.C \
  3. Mixer/Mixer_Strip.C \
  4. Mixer/Panner.C \
  5. Mixer/Mixer.C \
  6. Mixer_OBJS := $(Mixer_SRCS:.C=.o)
  7. Mixer_LIBS := $(FLTK_LIBS)
  8. INCLUDES := -I.
  9. Mixer/mixer: $(Mixer_OBJS) FL
  10. $(CXX) $(CXXFLAGS) $(Mixer_LIBS) $(Mixer_OBJS) -o $@ -LFL -lfl_widgets
  11. .PHONEY: Mixer
  12. Mixer: Mixer/mixer
  13. Mixer_clean:
  14. rm -f $(Mixer_OBJS) Mixer/mixer