1## Process this file with automake to produce Makefile.in
2
3noinst_LTLIBRARIES = libcivutility.la
4
5AM_CFLAGS = $(UTILITY_CFLAGS)
6
7libcivutility_la_SOURCES = \
8		astring.c       \
9		astring.h       \
10		bitvector.c     \
11		bitvector.h     \
12		capability.c	\
13		capability.h	\
14		deprecations.c	\
15		deprecations.h	\
16		distribute.c	\
17		distribute.h	\
18		fc_cmdline.c	\
19		fc_cmdline.h	\
20		fc_utf8.c	\
21		fc_utf8.h	\
22		fc_prehdrs.h	\
23		fcbacktrace.c	\
24		fcbacktrace.h	\
25		fciconv.c	\
26		fciconv.h	\
27		fcintl.c	\
28		fcintl.h	\
29		fcthread.c	\
30		fcthread.h	\
31		genhash.c	\
32		genhash.h	\
33		genlist.c	\
34		genlist.h	\
35		inputfile.c	\
36		inputfile.h	\
37		ioz.c		\
38		ioz.h		\
39		iterator.c	\
40		iterator.h	\
41		log.c		\
42		log.h		\
43		mem.c           \
44		mem.h		\
45		net_types.h	\
46		netfile.c	\
47		netfile.h	\
48		netintf.c	\
49		netintf.h	\
50		rand.c		\
51		rand.h		\
52		randseed.c	\
53		randseed.h	\
54		registry.c	\
55		registry.h	\
56		registry_ini.c	\
57		registry_ini.h	\
58		registry_xml.c	\
59		registry_xml.h	\
60		section_file.c	\
61		section_file.h	\
62		shared.c	\
63		shared.h	\
64		specenum_gen.h	\
65		spechash.h	\
66		speclist.h	\
67		specpq.h	\
68		specvec.h	\
69		string_vector.c	\
70		string_vector.h	\
71		support.c	\
72		support.h	\
73		timing.c	\
74		timing.h	\
75		md5.c		\
76		md5.h
77
78EXTRA_DIST = \
79		generate_specenum.py
80
81libcivutility_la_LIBADD = $(UTILITY_LIBS)
82
83BUILT_SOURCES = specenum_gen.h
84
85specenum_gen.h: specenum_generate
86.INTERMEDIATE: specenum_generate
87specenum_generate: generate_specenum.py
88	cd $(srcdir) && ./generate_specenum.py
89	touch specenum_generate
90
91# These files are not generated to builddir, but to srcdir */
92MAINTAINERCLEANFILES = $(srcdir)/specenum_gen.h
93