fix makefile so that it no longer ignores errors

This commit is contained in:
ftk 2020-11-21 16:12:54 +03:00
parent b96c037be0
commit f85d4652cf

View File

@ -1,6 +1,12 @@
.PHONY: app
.PHONY: app clean
DIRECTORIES := $(wildcard */)
app: $(DIRECTORIES)
$(DIRECTORIES)::
echo building $@...
cd $@ && ./genromap
app:
find . -maxdepth 2 -mindepth 2 -type d -execdir ./genromap {} \;
clean:
find . -name build_out|xargs rm -rf
find . -name build_out | xargs rm -rf