diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-01 15:04:40 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-09-01 15:04:40 +0000 |
commit | 990e04bab51bf1c3771938b8f598272c1b31cdca (patch) | |
tree | 8b077d8d3326feeb6736f5eb1fa719103a8822d5 /make/bsd-real.mk | |
parent | 8f8e244f4f350a53a2a84296a66468b7e5ac4a2b (diff) |
Move dependency tracking from ./configure to Makefile
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11556 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'make/bsd-real.mk')
-rw-r--r-- | make/bsd-real.mk | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/make/bsd-real.mk b/make/bsd-real.mk new file mode 100644 index 000000000..ea3e1482c --- /dev/null +++ b/make/bsd-real.mk @@ -0,0 +1,25 @@ +CORE_TARGS != perl -e 'print join " ", grep s/\.cpp/.o/, <*.cpp>' +MODE_TARGS != perl -e 'print join " ", grep s/\.cpp/.o/, <modes/*.cpp>' +CMD_TARGS != perl -e 'print join " ", grep s/\.cpp/.so/, <commands/*.cpp>' +MOD_TARGS != perl -e 'print join " ", grep s/\.cpp/.so/, <modules/*.cpp>' +CORE_TARGS += modeclasses.a threadengines/threadengine_pthread.o +CORE_TARGS += socketengines/$(SOCKETENGINE).o + +DFILES != perl -e 'print join " ", grep s/\.cpp/.d/, <*.cpp>, <commands/*.cpp>, <modes/*.cpp>, <modules/*.cpp>' +DFILES += socketengines/$(SOCKETENGINE).d threadengines/threadengine_pthread.d + +all: inspircd commands modules + +commands: $(CMD_TARGS) + +modules: $(MOD_TARGS) + +modeclasses.a: $(MODE_TARGS) + @../make/run-cc.pl ar crs modeclasses.a $(MODE_TARGS) + +inspircd: $(CORE_TARGS) + $(RUNCC) $(FLAGS) -rdynamic -L. -o inspircd $(LDLIBS) $(CORE_TARGS) + +.for FILE in $(DFILES) +.include "$(FILE)" +.endfor |