summaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-01 15:05:43 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-01 15:05:43 +0000
commit8db36081940e85a02c71d0b51c6d2107ceffd3b4 (patch)
treef1e97993f7546fbc5eaf45040d662651626db116 /make
parent77f2c57c6072220c7ded7d40c4ef82ea4756fb3e (diff)
Clean up unneeded messages, fix BSD make
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11563 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'make')
-rw-r--r--make/bsd-real.mk4
-rw-r--r--make/gnu-real.mk2
2 files changed, 2 insertions, 4 deletions
diff --git a/make/bsd-real.mk b/make/bsd-real.mk
index 4ae834329..8ae9bfe99 100644
--- a/make/bsd-real.mk
+++ b/make/bsd-real.mk
@@ -8,8 +8,8 @@ CORE_TARGS += modeclasses.a threadengines/threadengine_pthread.o
CORE_TARGS += socketengines/$(SOCKETENGINE).o
MOD_TARGS += modules/m_spanningtree.so
-DFILES != perl -e 'print join " ", grep s/\.cpp/.d/, <*.cpp>, <commands/*.cpp>, <modes/*.cpp>, <modules/*.cpp>, <modules/m_spanningtree/*.cpp>'
-DFILES += socketengines/$(SOCKETENGINE).d threadengines/threadengine_pthread.d
+DFILES != perl -e 'print join " ", grep s!([^/]+)\.cpp!.$$1.d!, <*.cpp>, <commands/*.cpp>, <modes/*.cpp>, <modules/*.cpp>, <modules/m_spanningtree/*.cpp>'
+DFILES += socketengines/.$(SOCKETENGINE).d threadengines/.threadengine_pthread.d
all: inspircd commands modules
diff --git a/make/gnu-real.mk b/make/gnu-real.mk
index e0a8af68f..489e1bbdf 100644
--- a/make/gnu-real.mk
+++ b/make/gnu-real.mk
@@ -27,9 +27,7 @@ inspircd: $(CORE_TARGS)
$(RUNCC) $(FLAGS) $(CORE_FLAGS) -o inspircd $(LDLIBS) $(CORE_TARGS)
.%.d: %.cpp
- @$(VDEP_IN)
@../make/calcdep.pl $<
- @$(VDEP_OUT)
.PHONY: all alldep commands modules