blob: 861787d87488ff2993edbfacd140c548a1f75add (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
## Process this file with automake to produce Makefile.in
noinst_TEXINFOS = glib.texi
noinst_MANS = glib-config.1
EXTRA_DIST = glib-config.1.in \
glib.html \
glib_toc.html
glib.html glib_toc.html:
(cd $(srcdir); texi2html glib.texi)
files:
@files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
echo $$p; \
done
|