1## Process this file with automake to produce Makefile.in
2## Created by Anjuta - will be overwritten
3## If you don't want it to overwrite it,
4## 	Please disable it in the Anjuta project configuration
5
6SUBDIRS = po include src data
7
8netustaddocdir = ${prefix}/share/doc/netustad
9netustaddoc_DATA = \
10	README\
11	COPYING\
12	AUTHORS\
13	ChangeLog\
14	INSTALL\
15	NEWS\
16	TODO\
17	ABOUT-NLS
18
19EXTRA_DIST = $(netustaddoc_DATA)
20
21# Copy all the spec files. Of cource, only one is actually used.
22dist-hook:
23	for specfile in *.spec; do \
24		if test -f $$specfile; then \
25			cp -p $$specfile $(distdir); \
26		fi \
27	done
28
29