Skip to content

Commit b613b36

Browse files
authored
Merge pull request #552 from tock/make-fix-sentinel-rules
make: fix sentinel rules
2 parents 2871345 + 8c8bdcc commit b613b36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AppMakefile.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ include $(2)/Makefile.version
6969

7070
$$($(3)_SENTINEL_FILE):
7171
$$(MAKE) -C $(2) -f Makefile.setup all
72-
$$(MAKE) -C $(2) -f Makefile all
7372

74-
$(1): $$($(3)_SENTINEL_FILE) ;
73+
$(1): $$($(3)_SENTINEL_FILE)
74+
$$(MAKE) -C $(2) -f Makefile all
7575
else
7676
# No Makefile.version, so this will work the first time the library is built.
7777
$(1):

0 commit comments

Comments
 (0)