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.

41 lines
1013B

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