Added support for DE200C VFD
[lcdproc-de200c.git] / Makefile.am
blobaf1e45a00fee8f1e6cd23a5d87aac9ca0d1f0ce8
1 ## Process this file with automake to produce Makefile.in
3 ## set automake strictness to 'foreign'
4 AUTOMAKE_OPTIONS = foreign
6 SUBDIRS = shared clients server docs scripts
8 sysconf_DATA = LCDd.conf
10 EXTRA_DIST = $(sysconf_DATA) CREDITS README.IRman contrib
13 ## convenience targets
14 install-html-guides: install-html-developerguide install-html-userguide
16 install-html-developerguide:
17         $(MAKE) -C docs $@
19 install-html-userguide:
20         $(MAKE) -C docs $@
22 dox:
23         $(MAKE) -C docs $@
25 topleveltags:
26         $(CTAGS) --format=1 -f - --languages=C --c-kinds=f --recurse=yes  server shared clients \
27         | perl -p -e 's/^([^\t]+)\t[^\t]+\/([^\t\/]+)\t(.*)$/$1\t$2\t$3/' > tags
29 ## EOF