1#
2# Makefile.am - automake configuration file for the shortform generator
3#
4
5EXTRA_DIST = example.c smallex.c
6
7bin_SCRIPTS = nana-sfg nana-sfdir
8
9#
10# example - build a Nana shortform version of the current directory
11#
12# Note: you need to install the GLOBAL source code to HTML package
13#    which is available from:
14#
15#      Shigio Yamaguchi at http://wafu.netgate.net/tama/unix/global.html
16#
17#      or at the FreeBSD archives (it is installed by default on FreeBSD)
18#
19#      or at the nana archive ftp://ftp.cs.ntu.edu.au/pub/nana
20#
21# Alternatively install your own source to HTML package such as DOC++
22# and modify MKHTML
23#
24
25MKHTML = cd NANASF; (gtags ; htags) || echo install global
26
27example:
28	nana-sfdir
29	$(MKHTML)
30	@echo see NANASF/HTML/index.html
31
32
33