From: John Darrington Date: Mon, 28 Sep 2009 18:27:04 +0000 (+0200) Subject: Added a new target "programs" to the makefile. X-Git-Tag: sid-i386-build67^0 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=161df84f01bd630fb20878a3802d7eebf58c67b9 Added a new target "programs" to the makefile. When a source file is changed, the "all" target (correctly) rebuilds the po/pspp.pot file and remerges the PO files for all supported translations, and then builds .gmo files for each of them. Whilst this is correct behaviour, it will become an unmitigated nuisance for developers as more and more translations are added. This change adds a new target called "programs" which builds the binaries, but not the ancilliary targets. This target is more convienient for working on changes to the source code, when translations are not of interest. --- diff --git a/Makefile.am b/Makefile.am index 4f9bc660..6fca4b1c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -87,3 +87,6 @@ uninstall-hook: $(UNINSTALL_DATA_HOOKS) clean-local: $(CLEAN_LOCAL) all-local: $(ALL_LOCAL) + +# A convenience target to build all the binaries +programs: $(PROGRAMS)