The first (all) target must be by itself or some makes will choose

the run the entire target list.
This commit is contained in:
Todd C. Miller
2013-04-02 12:40:53 -04:00
parent 7364f0ce98
commit 09754a11aa

View File

@@ -78,7 +78,13 @@ XGETTEXT_OPTS = -F -k_ -kN_ --copyright-holder="Todd C. Miller" \
--flag easprintf:3:c-format --flag lbuf_append:2:c-format \ --flag easprintf:3:c-format --flag lbuf_append:2:c-format \
--flag lbuf_append_quoted:3:c-format --foreign-user --flag lbuf_append_quoted:3:c-format --foreign-user
all check pre-install: config.status all: config.status
for d in $(SUBDIRS); \
do (cd $$d && exec $(MAKE) $@) && continue; \
exit $$?; \
done
check pre-install: config.status
for d in $(SUBDIRS); \ for d in $(SUBDIRS); \
do (cd $$d && exec $(MAKE) $@) && continue; \ do (cd $$d && exec $(MAKE) $@) && continue; \
exit $$?; \ exit $$?; \