tazusb diff Makefile @ rev 129

tazusb: c32box compatible
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Apr 18 17:19:56 2012 +0200 (2012-04-18)
parents 8ee01a845cce
children ef01c9917fe8
line diff
     1.1 --- a/Makefile	Wed Aug 31 16:59:17 2011 +0200
     1.2 +++ b/Makefile	Wed Apr 18 17:19:56 2012 +0200
     1.3 @@ -15,10 +15,10 @@
     1.4  # i18n.
     1.5  
     1.6  pot:
     1.7 -	xgettext -o po/tazusbbox/tazusbbox.pot -L Shell \
     1.8 +	xgettext -o po/tazusb-box/tazusb-box.pot -L Shell \
     1.9  		--package-name="TazUSB" \
    1.10  		--package-version="$(VERSION)" \
    1.11 -		./tazusbbox
    1.12 +		./tazusb-box
    1.13  	xgettext -o po/tazusb/tazusb.pot -L Shell \
    1.14  		--package-name="TazUSB" \
    1.15  		--package-version="$(VERSION)" \
    1.16 @@ -26,9 +26,9 @@
    1.17  
    1.18  msgmerge:
    1.19  	@for l in $(LINGUAS); do \
    1.20 -		if [ -f "po/tazusbbox/$$l.po" ]; then \
    1.21 +		if [ -f "po/tazusb-box/$$l.po" ]; then \
    1.22  			echo -n "Updating $$l po file."; \
    1.23 -			msgmerge -U po/tazusbbox/$$l.po po/tazusbbox/tazusbbox.pot ; \
    1.24 +			msgmerge -U po/tazusb-box/$$l.po po/tazusb-box/tazusb-box.pot ; \
    1.25  		fi;\
    1.26  		if [ -f "po/tazusb/$$l.po" ]; then \
    1.27  			echo -n "Updating $$l po file."; \
    1.28 @@ -38,10 +38,10 @@
    1.29  
    1.30  msgfmt:
    1.31  	@for l in $(LINGUAS); do \
    1.32 -		if [ -f "po/tazusbbox/$$l.po" ]; then \
    1.33 -			echo "Compiling tazusbbox $$l mo file..."; \
    1.34 +		if [ -f "po/tazusb-box/$$l.po" ]; then \
    1.35 +			echo "Compiling tazusb-box $$l mo file..."; \
    1.36  			mkdir -p po/mo/$$l/LC_MESSAGES; \
    1.37 -			msgfmt -o po/mo/$$l/LC_MESSAGES/tazusbbox.mo po/tazusbbox/$$l.po ; \
    1.38 +			msgfmt -o po/mo/$$l/LC_MESSAGES/tazusb-box.mo po/tazusb-box/$$l.po ; \
    1.39  		fi;\
    1.40  		if [ -f "po/tazusb/$$l.po" ]; then \
    1.41  			echo "Compiling tazusb $$l mo file..."; \
    1.42 @@ -56,7 +56,7 @@
    1.43  	@echo "Installing TazUSB into $(DESTDIR)$(PREFIX)/bin..."
    1.44  	mkdir -p $(DESTDIR)$(PREFIX)/bin
    1.45  	install -m 0755 tazusb $(DESTDIR)$(PREFIX)/bin
    1.46 -	install -m 0755 tazusbbox $(DESTDIR)$(PREFIX)/bin
    1.47 +	install -m 0755 tazusb-box $(DESTDIR)$(PREFIX)/bin
    1.48  	@echo "Installing Tazusb documentation..."
    1.49  	mkdir -p $(DESTDIR)$(DOCDIR)/tazusb
    1.50  	cp -a doc/* $(DESTDIR)$(DOCDIR)/tazusb
    1.51 @@ -72,7 +72,7 @@
    1.52  
    1.53  uninstall:
    1.54  	rm -f $(DESTDIR)$(PREFIX)/bin/tazusb
    1.55 -	rm -f $(DESTDIR)$(PREFIX)/bin/tazusbbox
    1.56 +	rm -f $(DESTDIR)$(PREFIX)/bin/tazusb-box
    1.57  	rm -rf $(DESTDIR)$(DOCDIR)/tazusb
    1.58  	rm -rf $(DESTDIR)$(PREFIX)/share/locale/*/LC_MESSAGES/tazusb*.mo
    1.59