mcabber/doc/help/Makefile.am
author Mikael Berthe <mikael@lilotux.net>
Tue, 12 Dec 2006 07:48:41 +0100
changeset 1101 4c702f30ff2c
parent 1098 b3bfdecfd178
child 1114 2ba26f6c060f
permissions -rw-r--r--
Dutch translation of the help files (Eric Hameleers)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
903
c4f164c4b0d3 Help files installation
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     1
helpdir = $(datadir)/mcabber/help
c4f164c4b0d3 Help files installation
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     2
c4f164c4b0d3 Help files installation
Mikael Berthe <mikael@lilotux.net>
parents:
diff changeset
     3
install-data-local:
914
2aa0735936f8 Use DESTDIR in Makefile
Mikael Berthe <mikael@lilotux.net>
parents: 905
diff changeset
     4
	$(INSTALL) -d $(DESTDIR)$(datadir)/mcabber/help
1101
4c702f30ff2c Dutch translation of the help files (Eric Hameleers)
Mikael Berthe <mikael@lilotux.net>
parents: 1098
diff changeset
     5
	for lang in en de fr nl pl uk; do \
1031
08d7f6fa9f7c [BP-35b83557ffe1] Use install(1) for help files
Mikael Berthe <mikael@lilotux.net>
parents: 914
diff changeset
     6
		$(INSTALL) -d $(DESTDIR)$(datadir)/mcabber/help/$$lang; \
08d7f6fa9f7c [BP-35b83557ffe1] Use install(1) for help files
Mikael Berthe <mikael@lilotux.net>
parents: 914
diff changeset
     7
		$(INSTALL) -m 0644 $$lang/* \
08d7f6fa9f7c [BP-35b83557ffe1] Use install(1) for help files
Mikael Berthe <mikael@lilotux.net>
parents: 914
diff changeset
     8
		           $(DESTDIR)$(datadir)/mcabber/help/$$lang; \
08d7f6fa9f7c [BP-35b83557ffe1] Use install(1) for help files
Mikael Berthe <mikael@lilotux.net>
parents: 914
diff changeset
     9
	done