add global Makefile

src/Makefile uses now 'find' for looking for *.cpp files
and we don't need Makefile.o.dep anymore
This commit is contained in:
2022-06-26 06:16:09 +02:00
parent c31c7dfb63
commit a03e3f5d21
4 changed files with 92 additions and 60 deletions

25
Makefile Normal file
View File

@@ -0,0 +1,25 @@
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: