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.

35 lines
733B

  1. FLTK_LIBS := `fltk-config --ldflags`
  2. JACK_LIBS := `pkg-config --libs jack`
  3. SNDFILE_LIBS := `pkg-config --libs sndfile`
  4. CXXFLAGS := -ggdb -Wall -O0 -fno-rtti -fno-exceptions
  5. all: makedepend FL Timeline Mixer
  6. .C.o:
  7. @ echo -n "Compiling: "; tput bold; tput setaf 3; echo $<; tput sgr0; true
  8. @ $(CXX) $(CXXFLAGS) $(INCLUDES) -c $< -o $@
  9. %.C : %.fl
  10. @ fluid -c $<
  11. include FL/makefile.inc
  12. include Timeline/makefile.inc
  13. include Mixer/makefile.inc
  14. SRCS:=$(FL_SRCS) $(Timeline_SRCS) $(Mixer_SRCS)
  15. TAGS: $(SRCS)
  16. etags $(SRCS)
  17. makedepend: $(SRCS)
  18. @ echo -n Checking dependencies...
  19. @ makedepend -f- -- $(CXXFLAGS) -- $(SRCS) > makedepend 2>/dev/null && echo done.
  20. clean: FL_clean Timeline_clean Mixer_clean
  21. include makedepend