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.

39 lines
947B

  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. LASH_LIBS := `pkg-config --libs lash-1.0`
  6. LASH_CFLAGS := `pkg-config --cflags lash-1.0`
  7. CXXFLAGS := $(LASH_CFLAGS) -DVERSION=\"$(VERSION)\" -ggdb -Wextra -Wno-missing-field-initializers -O0 -fno-rtti -fno-exceptions
  8. all: makedepend FL Timeline Mixer
  9. .C.o:
  10. @ echo -n "Compiling: "; tput bold; tput setaf 3; echo $<; tput sgr0; true
  11. @ $(CXX) $(CXXFLAGS) $(INCLUDES) -c $< -o $@
  12. %.C : %.fl
  13. @ cd `dirname $<` && fluid -c ../$<
  14. include FL/makefile.inc
  15. include Timeline/makefile.inc
  16. include Mixer/makefile.inc
  17. SRCS:=$(FL_SRCS) $(Timeline_SRCS) $(Mixer_SRCS)
  18. TAGS: $(SRCS)
  19. etags $(SRCS)
  20. makedepend: $(SRCS) Makefile
  21. @ echo -n Checking dependencies...
  22. @ makedepend -f- -- $(CXXFLAGS) -- $(SRCS) > makedepend 2>/dev/null && echo done.
  23. clean: FL_clean Timeline_clean Mixer_clean
  24. include makedepend