#Makefile per license-dialog #E' il primo che scrivo, quindi lascio il resto alla vostra immaginazione ;D PACKAGE=license-dialog distdir = $(PACKAGE)-$(VERSION) dist_archive = $(distdir).tar.bz2 include VERSION #Directory bindir = /usr/bin datadir = /usr/share localesdir = ${datadir}/locale DESTDIR = INSTALL = /usr/bin/install INSTALL_PROGRAM = ${INSTALL} -m 755 INSTALL_DATA = ${INSTALL} -m 644 INSTALL_DIR = ${INSTALL} -d -m 755 INSTALL_SCRIPT = ${INSTALL_PROGRAM} pck_catalogs := $(wildcard po/*.po) .SUFFIXES: .po .mo .po.mo:; msgfmt $< -o $@ all: locales locales: $(pck_catalogs:.po=.mo) install-locales: locales @for f in $(pck_catalogs); do\ lang=`echo $$f | sed 's,.*/\(.*\)\.po,\1,'`;\ echo "installing i18n file for language \`$$lang'...";\ dir="$(DESTDIR)$(localesdir)/$$lang/LC_MESSAGES";\ $(INSTALL_DIR) $$dir;\ $(INSTALL_DATA) $${f/.po/.mo} $$dir/license-dialog.mo;\ done install-dirs: @$(INSTALL_DIR) $(DESTDIR)$(bindir) install: install-dirs install-locales $(INSTALL_PROGRAM) src/license-dialog $(DESTDIR)$(bindir)/license-dialog clean: rm -f $(pck_catalogs:.po=.mo) rm -f $(dist_archive) dist: clean #@git clean -f #@git log > ChangeLog @mkdir /tmp/$(distdir) @cp -a * /tmp/$(distdir)/ @rm -f $(dist_archive);\ tar cf - -C /tmp $(distdir) | bzip2 -9 -c > $(dist_archive) @rm -rf /tmp/$(distdir) @echo "file \`$(dist_archive)' created" dist-rpm: dist @rpm_sourcedir=`rpm --eval=%{_sourcedir}`;\ mv -f $(PACKAGE)-$(VERSION).tar.bz2 $$rpm_sourcedir;\ echo "File $$rpm_sourcedir/$(PACKAGE)-$(VERSION).tar.bz2 created."