[Apt-listbugs-commits] [SCM] apt-listbugs development tree branch, master, updated. apt-listbugs/0.1.7-7-gd38b80e

Francesco Poli (wintermute) invernomuto at paranoici.org
Wed Jul 18 21:44:43 UTC 2012


The following commit has been merged in the master branch:
commit b12d4bef56fcff23e9da2d5c3c84ee9e2beba781
Author: Francesco Poli (wintermute) <invernomuto at paranoici.org>
Date:   Tue Jul 17 21:56:48 2012 +0200

    separate .PHONY declarations in Makefile
    
    Moreover, "real-check" was an obsolete target replaced by "check":
    the corresponding .PHONY declaration has been fixed.

diff --git a/Makefile b/Makefile
index c8f7205..eea3bd1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,20 +1,24 @@
 LINGUAS := $(shell cd po; ls *.po| cut -d'.' -f1)
 MOFILES := $(patsubst %.po,%.mo,$(wildcard po/*.po))
 
+.PHONY: all
 all: apt-listbugs.1 $(MOFILES)
 
+.PHONY: clean
 clean:
 	find -name '*~' | xargs rm -f -- 
 	rm -f tests/log/tmp
 	rm -f apt-listbugs.1
 	rm -f $(MOFILES)
 
+.PHONY: check
 check:
 	./test_logic.rb
 
 apt-listbugs.1: apt-listbugs
 	rd2 -r rd/rd2man-lib.rb -o apt-listbugs apt-listbugs
 
+.PHONY: update-po
 update-po:
 	xgettext --add-comments=TRANSLATORS --language=python apt-listbugs lib/apt-listbugs/logic.rb -o po/apt-listbugs.pot
 	for po in $(LINGUAS); do \
@@ -25,6 +29,7 @@ update-po:
 	  msgfmt -v po/$$po.po -o /dev/null; \
 	done
 
+.PHONY: install
 install:
 	# Add here commands to install the package into debian/apt-listbugs.
 	for mo in $(MOFILES); do \
@@ -35,4 +40,3 @@ install:
 %.mo: %.po
 	msgfmt -o $@ $<
 
-.PHONY: update-po real-check clean all install

-- 
apt-listbugs development tree



More information about the Apt-listbugs-commits mailing list