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.
|
-
- # Makefile for the Non-DAW.
- # Copyright 2008 Jonathan Moore Liles
- # This file is licencesd under version 2 of the GPL.
-
- #
- # Do not edit this file; run `make config` instead.
- #
-
- VERSION := 0.5.0
-
- all: makedepend FL Timeline Mixer
-
- make.conf: configure
- @ ./configure
-
- -include make.conf
-
- ifeq (($MAINTAINER_MODE),yes)
- CXXFLAGS := -pipe -ggdb -Wextra -Wno-missing-field-initializers -O0 -fno-rtti -fno-exceptions
- else
- CXXFLAGS := -pipe -O3 -fno-rtti -fno-exceptions -DNDEBUG
- endif
-
- CXXFLAGS += $(LASH_CFLAGS) -DINSTALL_PREFIX=\"$(prefix)\" -DVERSION=\"$(VERSION)\"
-
- include scripts/colors
-
- .C.o:
- @ echo -n "Compiling: "; echo $(BOLD)$(YELLOW)$<$(SGR0); true
- @ $(CXX) $(CXXFLAGS) $(INCLUDES) -c $< -o $@
-
- %.C : %.fl
- @ cd `dirname $<` && fluid -c ../$<
-
- DONE := $(BOLD)$(GREEN)done$(SGR0)
-
- include FL/makefile.inc
- include Timeline/makefile.inc
- include Mixer/makefile.inc
-
- SRCS:=$(FL_SRCS) $(Timeline_SRCS) $(Mixer_SRCS)
- OBJS:=$(FL_OBJS) $(Timeline_OBJS) $(Mixer_OBJS)
-
- # FIXME: isn't there a better way?
- $(OBJS): make.conf
-
- TAGS: $(SRCS)
- etags $(SRCS)
-
- #makedepend: $(SRCS) Makefile
- makedepend: $(SRCS)
- @ echo -n Checking dependencies...
- @ makedepend -f- -- $(CXXFLAGS) -- $(SRCS) > makedepend 2>/dev/null && echo done.
-
- .PHONEY: clean config
-
- clean: FL_clean Timeline_clean Mixer_clean
-
- config:
- # @ rm -f make.conf
- @ ./configure
- @ $(MAKE) -s
-
- -include makedepend
|