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.

23 lines
641B

  1. # -*- mode: makefile; -*-
  2. all: Mixer
  3. Mixer_SRCS := $(wildcard src/*.C src/*.fl src/Engine/*.C)
  4. Mixer_SRCS:=$(Mixer_SRCS:.fl=.C)
  5. Mixer_SRCS:=$(sort $(Mixer_SRCS))
  6. Mixer_OBJS:=$(Mixer_SRCS:.C=.o)
  7. Mixer_LIBS := $(FLTK_LIBS) $(JACK_LIBS) $(LASH_LIBS) $(LRDF_LIBS) $(LIBLO_LIBS) $(SIGCPP_LIBS)
  8. Mixer_CFLAGS := $(FLTK_CFLAGS) $(JACK_CFLAGS) $(LIBLO_CFLAGS) $(SIGCPP_CFLAGS)
  9. src/mixer: $(Mixer_OBJS) FL/libfl_widgets.a nonlib/libnonlib.a
  10. @ echo -n Linking mixer...
  11. @ $(CXX) $(CXXFLAGS) $(Mixer_LIBS) $(Mixer_OBJS) -o $@ -LFL -lfl_widgets -Lnonlib -lnonlib -ldl && echo $(DONE)
  12. Mixer: src/mixer
  13. Mixer_clean:
  14. rm -f $(Mixer_OBJS) src/mixer