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.

25 lines
759B

  1. # -*- mode: makefile; -*-
  2. all: Timeline
  3. Timeline_VERSION := 0.5.0
  4. Timeline_SRCS := $(wildcard src/*.C src/*.fl src/Engine/*.C)
  5. Timeline_SRCS:=$(Timeline_SRCS:.fl=.C)
  6. Timeline_SRCS:=$(sort $(Timeline_SRCS))
  7. Timeline_OBJS:=$(Timeline_SRCS:.C=.o)
  8. Timeline_LIBS := $(FLTK_LIBS) $(JACK_LIBS) $(SNDFILE_LIBS) $(LIBLO_LIBS) $(SIGCPP_LIBS) $(XPM_LIBS)
  9. Timeline_CFLAGS := $(SNDFILE_CFLAGS) $(FLTK_CFLAGS) $(JACK_CFLAGS) $(SIGCPP_CFLAGS) $(XPM_CFLAGS)
  10. src/timeline: $(Timeline_OBJS) FL/libfl_widgets.a nonlib/libnonlib.a
  11. @ echo -n Linking timeline...
  12. @ $(CXX) $(CXXFLAGS) $(INCLUDES) $(Timeline_LIBS) $(Timeline_OBJS) -o $@ -LFL -lfl_widgets -Lnonlib -lnonlib && echo $(DONE)
  13. Timeline: src/timeline
  14. Timeline_clean:
  15. rm -f $(Timeline_OBJS) Timeline/timeline