mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 19:19:02 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11587 e03df62e-2008-0410-955e-edbf42e46eb7
22 lines
659 B
Makefile
22 lines
659 B
Makefile
CORE_TARGS != perl -e 'print join " ", grep s/\.cpp/.o/, <*.cpp>, <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>'
|
|
MDIR_TARGS != perl -e 'print join " ", grep s!/?$$!.so!, grep -d, <modules/m_*>'
|
|
|
|
CORE_TARGS += socketengines/$(SOCKETENGINE).o threadengines/threadengine_pthread.o
|
|
|
|
DFILES != perl ../make/calcdep.pl -all
|
|
|
|
all: inspircd commands modules
|
|
|
|
commands: $(CMD_TARGS)
|
|
|
|
modules: $(MOD_TARGS) $(MDIR_TARGS)
|
|
|
|
inspircd: $(CORE_TARGS)
|
|
$(RUNCC) -o $@ $(CORELDFLAGS) $(LDLIBS) $(CORE_TARGS)
|
|
|
|
.for FILE in $(DFILES)
|
|
.include "$(FILE)"
|
|
.endfor
|