summaryrefslogtreecommitdiff
path: root/make/gnu-dep.mk
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-01 15:06:11 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-01 15:06:11 +0000
commitfacb1eb98f911b3e3811ad9cebaf221931ee9c7a (patch)
tree2330b4e20ad0416205959c67baa89903e8c637f1 /make/gnu-dep.mk
parentc835102e640db1481bcc78cdebc7f875d996d9c9 (diff)
Replace special treatment of spanningtree module directory with a generic directory build
This allows "make M=m_spanningtree" to work on a clean build tree It also allows for other complex modules to be created (i.e. m_services) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11567 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'make/gnu-dep.mk')
-rw-r--r--make/gnu-dep.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/gnu-dep.mk b/make/gnu-dep.mk
index 5cf0927da..cd5b37078 100644
--- a/make/gnu-dep.mk
+++ b/make/gnu-dep.mk
@@ -1,4 +1,4 @@
-CFILES = $(shell perl -e 'print join " ", <*.cpp>, <commands/*.cpp>, <modes/*.cpp>, <modules/*.cpp>, <modules/m_spanningtree/*.cpp>')
+CFILES = $(shell perl -e 'print join " ", <*.cpp>, <commands/*.cpp>, <modes/*.cpp>, <modules/*.cpp>, <modules/m_*/*.cpp>')
CFILES += socketengines/$(SOCKETENGINE).cpp threadengines/threadengine_pthread.cpp
alldep:
@../make/calcdep.pl $(CFILES)