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.

37 lines
807B

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