Merge pull request #78 from ftk/make-fix

Fix CI ignoring build errors
This commit is contained in:
Marek Kraus 2020-11-21 15:23:46 +01:00 committed by GitHub
commit 33598a822b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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