|
|
@@ -7,8 +7,6 @@ |
|
|
|
# Do not edit this file; run `make config` instead. |
|
|
|
# |
|
|
|
|
|
|
|
include scripts/colors |
|
|
|
|
|
|
|
VERSION := 0.5.0 |
|
|
|
|
|
|
|
all: makedepend FL Timeline Mixer |
|
|
@@ -19,13 +17,15 @@ make.conf: configure |
|
|
|
-include make.conf |
|
|
|
|
|
|
|
ifeq (($MAINTAINER_MODE),yes) |
|
|
|
CXXFLAGS := -ggdb -Wextra -Wno-missing-field-initializers -O0 -fno-rtti -fno-exceptions |
|
|
|
CXXFLAGS := -pipe -ggdb -Wextra -Wno-missing-field-initializers -O0 -fno-rtti -fno-exceptions |
|
|
|
else |
|
|
|
CXXFLAGS := -O3 -fno-rtti -fno-exceptions -DNDEBUG |
|
|
|
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 $@ |
|
|
@@ -58,7 +58,8 @@ makedepend: $(SRCS) |
|
|
|
clean: FL_clean Timeline_clean Mixer_clean |
|
|
|
|
|
|
|
config: |
|
|
|
@ rm -f make.conf |
|
|
|
# @ rm -f make.conf |
|
|
|
@ ./configure |
|
|
|
@ $(MAKE) -s |
|
|
|
|
|
|
|
-include makedepend |