~ubuntu-branches/ubuntu/trusty/xubuntu-default-settings/trusty

56 by Lionel Le Folgoc
* Fix "[Xubuntu only] Non-translatable labels and launchers" (LP: #163206):
1
#!/usr/bin/make -f
2
105 by Lionel Le Folgoc
* debian/{preinst,postint,postrm}: cleanup, remove natty-specific code, and
3
SUBDIRS := etc/xdg/xdg-xubuntu/Thunar/po
56 by Lionel Le Folgoc
* Fix "[Xubuntu only] Non-translatable labels and launchers" (LP: #163206):
4
68 by Lionel Le Folgoc
* etc/xdg/xubuntu/menus/xfce-applications.menu: replace all occurrences of
5
all:
6
	@echo "Nothing to build, call 'make install' instead."
56 by Lionel Le Folgoc
* Fix "[Xubuntu only] Non-translatable labels and launchers" (LP: #163206):
7
8
install:
9
	mkdir -pv $(DESTDIR)
10
	cp -a etc usr $(DESTDIR)/.
11
	# po generation
12
	for i in $(SUBDIRS); do \
13
		make -C $(DESTDIR)/$$i; \
14
		rm -rf $(DESTDIR)/$$i; \
15
	done
16
	# remove some remaining files
17
	find $(DESTDIR) -type f -iname "*.in" | xargs rm -f
18
19
# vim:ts=4