src/Makefile uses now 'find' for looking for *.cpp files and we don't need Makefile.o.dep anymore
26 lines
166 B
Makefile
26 lines
166 B
Makefile
|
|
|
|
export CXX
|
|
export CXXFLAGS
|
|
export AR
|
|
|
|
|
|
all: src
|
|
|
|
|
|
src: FORCE
|
|
$(MAKE) -C src
|
|
|
|
|
|
clean: FORCE
|
|
$(MAKE) -C src clean
|
|
|
|
|
|
depend: FORCE
|
|
$(MAKE) -C src depend
|
|
|
|
|
|
|
|
FORCE:
|
|
|