summaryrefslogtreecommitdiff
path: root/make/bsd-real.mk
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-17 03:04:27 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-09-17 03:04:27 +0000
commit3a186342c975a8bbd3f588d180a55e381b31883c (patch)
tree2efefce23e807e5479e0bf4e9fd7cfd5870b51f2 /make/bsd-real.mk
parentc9a998effe0ffe6e6a9d6c80cebb1a1e4b28b3ec (diff)
Remove .*.d dependency garbage, and use a dedicated build directory
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11738 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'make/bsd-real.mk')
-rw-r--r--make/bsd-real.mk22
1 files changed, 0 insertions, 22 deletions
diff --git a/make/bsd-real.mk b/make/bsd-real.mk
deleted file mode 100644
index 13cb2cce8..000000000
--- a/make/bsd-real.mk
+++ /dev/null
@@ -1,22 +0,0 @@
-VPATH = $(SOURCEPATH)/src
-CORE_TARGS != perl -e 'chdir "$$ENV{SOURCEPATH}/src"; print join " ", grep s/\.cpp/.o/, <*.cpp>, <modes/*.cpp>'
-CMD_TARGS != perl -e 'chdir "$$ENV{SOURCEPATH}/src"; print join " ", grep s/\.cpp/.so/, <commands/*.cpp>'
-MOD_TARGS != perl -e 'chdir "$$ENV{SOURCEPATH}/src"; print join " ", grep s/\.cpp/.so/, <modules/*.cpp>'
-MDIR_TARGS != perl -e 'chdir "$$ENV{SOURCEPATH}/src"; print join " ", grep s!/?$$!.so!, grep -d, <modules/m_*>'
-
-CORE_TARGS += socketengines/$(SOCKETENGINE).o threadengines/threadengine_pthread.o
-
-DFILES != perl $(SOURCEPATH)/make/calcdep.pl -all
-
-all: inspircd commands modules
-
-commands: $(CMD_TARGS)
-
-modules: $(MOD_TARGS) $(MDIR_TARGS)
-
-inspircd: $(CORE_TARGS)
- $(RUNCC) -o $@ $(CORELDFLAGS) $(LDLIBS) $^
-
-.for FILE in $(DFILES)
-.include "$(FILE)"
-.endfor