File: Makefile.am

package info (click to toggle)
xdialog 2.0.5-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,596 kB
  • ctags: 1,060
  • sloc: ansic: 8,471; sh: 4,052; yacc: 318; makefile: 79
file content (19 lines) | stat: -rw-r--r-- 880 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
## Process this file with automake to produce Makefile.in

AUTOMAKE_OPTIONS = foreign no-dependencies

SUBDIRS = lib intl src po
CONFIG_CLEAN_FILES = doc/index.html doc/changelog doc/changelog.html doc/license.html doc/Xdialog.1 ltmain.sh ltconfig

install-data-local:
	sed -e 's/%%version%%/$(VERSION)/' doc/index.html.in >doc/index.html; \
	sed -e 's/</\&lt;/' -e 's/</\&lt;/' -e 's/</\&lt;/' ChangeLog >doc/changelog; \
	cat doc/changelog.head doc/changelog doc/changelog.tail >doc/changelog.html; \
	cat doc/license.head COPYING doc/license.tail >doc/license.html;
	@$(NORMAL_INSTALL)
	sed -e 's/%%version%%/$(VERSION)/' \
	    -e 's:%%bindir%%:$(bindir):' \
	    -e 's:%%mandir%%:$(mandir):' \
	    -e 's:%%datadir%%:$(datadir):' doc/Xdialog.man >doc/Xdialog.1; \
	$(INSTALL) -d $(DESTDIR)$(mandir)/man1/; \
	$(INSTALL_DATA) doc/Xdialog.1 $(DESTDIR)$(mandir)/man1/Xdialog.1;