blob: 4d2f8e1dc8ef0032064eda7f913c56b6efabc3e0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
DFILES != perl -e 'print join " ", grep s/\.cpp/.d/, <*.cpp>, <commands/*.cpp>, <modes/*.cpp>, <modules/*.cpp>, <modules/m_spanningtree/*.cpp>'
DFILES += socketengines/$(SOCKETENGINE).d threadengines/threadengine_pthread.d
alldep: $(DFILES)
.SUFFIXES: .d .cpp
.cpp.d:
@../make/calcdep.pl $<
@echo -n .
|