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
28 lines
714 B
Makefile
28 lines
714 B
Makefile
CORE_TARGS = $(patsubst %.cpp,%.o,$(wildcard *.cpp) $(wildcard modes/*.cpp))
|
|
CMD_TARGS = $(patsubst %.cpp,%.so,$(wildcard commands/*.cpp))
|
|
MOD_TARGS = $(patsubst %.cpp,%.so,$(wildcard modules/*.cpp))
|
|
|
|
CORE_TARGS += socketengines/$(SOCKETENGINE).o threadengines/threadengine_pthread.o
|
|
MOD_TARGS += $(shell perl -e 'print join " ", grep s!/?$$!.so!, grep -d, <modules/m_*>')
|
|
|
|
DFILES = $(shell ../make/calcdep.pl -all)
|
|
|
|
all: inspircd commands modules
|
|
|
|
commands: $(CMD_TARGS)
|
|
|
|
modules: $(MOD_TARGS)
|
|
|
|
inspircd: $(CORE_TARGS)
|
|
$(RUNCC) -o $@ $(CORELDFLAGS) $(LDLIBS) $(CORE_TARGS)
|
|
|
|
.%.d: %.cpp
|
|
@../make/calcdep.pl -file $<
|
|
|
|
.%.d: %
|
|
@../make/calcdep.pl -file $<
|
|
|
|
.PHONY: all alldep commands modules
|
|
|
|
-include $(DFILES)
|