Re-worked the Makefiles.

committer: mfx <mfx> 1042477974 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2003-01-13 17:12:54 +00:00
parent 4e0967e0a1
commit 102e0f0a98
4 changed files with 244 additions and 163 deletions
+16
View File
@@ -0,0 +1,16 @@
# /***********************************************************************
# // automated dependencies
# ************************************************************************/
CFLAGS += -Wp,-MMD,.deps/$(*F).pp
ifeq ($(strip $(wildcard .deps)),)
DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
else
DEP_FILES := $(wildcard .deps/*.pp)
ifneq ($(strip $(DEP_FILES)),)
include $(DEP_FILES)
endif
endif