Skip to content

Commit 33598a8

Browse files
authored
Merge pull request #78 from ftk/make-fix
Fix CI ignoring build errors
2 parents b96c037 + f85d465 commit 33598a8

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

customer_app/Makefile

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
.PHONY: app
1+
.PHONY: app clean
2+
3+
DIRECTORIES := $(wildcard */)
4+
5+
app: $(DIRECTORIES)
6+
7+
$(DIRECTORIES)::
8+
echo building $@...
9+
cd $@ && ./genromap
210

3-
app:
4-
find . -maxdepth 2 -mindepth 2 -type d -execdir ./genromap {} \;
511
clean:
6-
find . -name build_out|xargs rm -rf
12+
find . -name build_out | xargs rm -rf

0 commit comments

Comments
 (0)