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.
|
-
-
- FLTK_LIBS := `fltk-config --ldflags`
- JACK_LIBS := `pkg-config --libs jack`
- SNDFILE_LIBS := `pkg-config --libs sndfile`
-
- CXXFLAGS := -ggdb -Wall -O0 -fno-rtti -fno-exceptions
-
- all: makedepend FL Timeline Mixer
-
- .C.o:
- @ echo -n "Compiling: "; tput bold; tput setaf 3; echo $<; tput sgr0; true
- @ $(CXX) $(CXXFLAGS) $(INCLUDES) -c $< -o $@
-
- %.C : %.fl
- @ fluid -c $<
-
-
- include FL/makefile.inc
- include Timeline/makefile.inc
- include Mixer/makefile.inc
-
- SRCS:=$(FL_SRCS) $(Timeline_SRCS) $(Mixer_SRCS)
-
- TAGS: $(SRCS)
- etags $(SRCS)
-
- makedepend: $(SRCS)
- @ echo -n Checking dependencies...
- @ makedepend -f- -- $(CXXFLAGS) -- $(SRCS) > makedepend 2>/dev/null && echo done.
-
- clean: FL_clean Timeline_clean Mixer_clean
-
- include makedepend
|