diff options
author | Michael Vogt <mvo@debian.org> | 2015-08-18 11:57:35 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2015-08-18 11:57:35 +0200 |
commit | b53c9cea2902572822bbbece5bac236c1bbf846e (patch) | |
tree | 6c6b0524e0971c0623ccbff71383523ee0b2a5cc /Makefile | |
parent | 21248c0f00ee71412dbadc6ebf84011cf974346d (diff) | |
parent | 2a22cd60f04c4291ea9b9b72e15b6d2ec378b001 (diff) |
Merge remote-tracking branch 'upstream/debian/experimental' into feature/srv-records
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -9,7 +9,7 @@ endif .PHONY: default default: startup all -.PHONY: headers library clean veryclean all binary program doc test update-po +.PHONY: fast headers library clean veryclean all binary program doc test update-po all headers library clean veryclean binary program doc manpages docbook test update-po startup dirs: $(MAKE) -C vendor $@ $(MAKE) -C apt-pkg $@ @@ -21,7 +21,18 @@ all headers library clean veryclean binary program doc manpages docbook test upd $(MAKE) -C dselect $@ $(MAKE) -C doc $@ $(MAKE) -C po $@ - $(MAKE) -C test $@ + # FIXME: -C test has issue swith parallel builds, investigate! + -$(MAKE) -C test $@ + +fast: + $(MAKE) -C vendor all + $(MAKE) -C apt-pkg all + $(MAKE) -C apt-inst all + $(MAKE) -C apt-private all + $(MAKE) -C methods all + $(MAKE) -C cmdline all + $(MAKE) -C ftparchive all + $(MAKE) -C test all all headers library clean veryclean binary program doc manpages docbook test update-po: startup dirs |