1SUBDIRS =
2
3INCLUDES = -I$(top_srcdir)/src
4
5noinst_HEADERS =	\
6	action.h	\
7	bitmap.h	\
8	block.h		\
9	blocktypes.h	\
10	browserfont.h	\
11	button.h	\
12	character.h	\
13	cxform.h	\
14	dbl.h		\
15	error.h		\
16	exports.h	\
17	fillstyle.h	\
18	font.h		\
19	fontinfo.h	\
20	fromswf.h	\
21	gradient.h	\
22	imports.h	\
23	input.h		\
24	jpeg.h		\
25	libswf.h	\
26	linestyle.h	\
27	matrix.h	\
28	method.h	\
29	morph.h		\
30	mp3.h		\
31	outputblock.h	\
32	output.h	\
33	placeobject.h	\
34	protect.h	\
35	rect.h		\
36	shape.h		\
37	sound.h		\
38	soundinstance.h	\
39	soundstream.h	\
40	sprite.h	\
41	swf.h		\
42	textfield.h	\
43	text.h		\
44	ttffont.h	\
45	fdbfont.h	\
46	utf8.h		\
47	videostream.h	\
48	filter.h	\
49	flv.h		\
50	fileattrs.h	\
51	metadata.h	\
52	scriptlimits.h	\
53	scalinggrid.h	\
54	tabindex.h	\
55	symbolclass.h	\
56	scenedata.h
57
58
59noinst_LTLIBRARIES = libblock.la
60
61#if USE_ZLIB
62
63#if USE_GIF
64GIF_SOURCE=gifdbl.c
65#endif
66
67#if USE_PNG
68PNG_SOURCE=pngdbl.c
69#endif
70
71#endif #zlib
72
73if USE_FREETYPE
74libblock_la_CFLAGS = $(FREETYPE_CFLAGS) $(AM_CFLAGS)
75TTF_SOURCE = ttffont.c
76endif
77
78libblock_la_SOURCES = 	\
79	action.c	\
80	bitmap.c	\
81	block.c		\
82	browserfont.c	\
83	button.c	\
84	character.c	\
85	cxform.c	\
86	dbl.c		\
87	error.c		\
88	fillstyle.c	\
89	font.c		\
90	fontinfo.c	\
91	fromswf.c	\
92	gradient.c	\
93	imports.c	\
94	input.c		\
95	jpeg.c		\
96	linestyle.c	\
97	matrix.c	\
98	method.c	\
99	morph.c		\
100	mp3.c		\
101	outputblock.c	\
102	output.c	\
103	protect.c	\
104	placeobject.c	\
105	rect.c		\
106	shape.c		\
107	sound.c		\
108	soundinstance.c	\
109	soundstream.c	\
110	sprite.c	\
111	text.c		\
112	textfield.c	\
113	fdbfont.c	\
114	utf8.c		\
115	videostream.c	\
116	flv.c		\
117	filter.c	\
118	fileattrs.c	\
119	metadata.c	\
120	scriptlimits.c	\
121	scalinggrid.c	\
122	tabindex.c	\
123	symbolclass.c	\
124	binary.c	\
125	scenedata.c	\
126	$(PNG_SOURCE)	\
127	$(GIF_SOURCE)   \
128	$(TTF_SOURCE)
129
130