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:17:20 +02:00
parent e02fe7a235
commit a212a69517
4 changed files with 60 additions and 26 deletions

26
Makefile Normal file
View File

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