Files
lcdproc/Makefile.am
T
marschap 24a8996795 add convenience targets to Makefiles; require autmake 1.9;
install HTML versin of user guide in Debian
2006-09-14 09:48:40 +00:00

26 lines
484 B
Makefile

## Process this file with automake to produce Makefile.in
## set automake strictness to 'foreign'
AUTOMAKE_OPTIONS = foreign
SUBDIRS = shared clients server docs scripts
sysconf_DATA = LCDd.conf
EXTRA_DIST = $(sysconf_DATA) CREDITS README.IRman contrib
## convenience targets
install-html-guides: install-html-developerguide install-html-userguide
install-html-developerguide:
$(MAKE) -C docs $@
install-html-userguide:
$(MAKE) -C docs $@
dox:
$(MAKE) -C docs $@
## EOF