root/trunk/src/Makefile.am

Revision 228 (checked in by ralf, 1 year ago)

add DoABC, DoDefineABC, SymbolClass? and DefineBinaryData?. add binary tag in simple mode.

Line 
1 # $Header: /home/dan/cvs/swfmill/src/Makefile.am,v 1.15 2005/05/22 16:18:42 dan Exp $
2
3 NULL =
4 MAINTAINERCLEANFILES = Makefile.in
5        
6 bin_PROGRAMS = swfmill
7
8 if IS_WINDOWS
9 ADDCFLAGS = -DLIBXML_STATIC -DLIBXSLT_STATIC -DLIBEXSLT_STATIC
10 ADDLDFLAGS = -all-static
11 endif
12 if IS_OSX
13 ADDCFLAGS = -DLIBXML_STATIC -DLIBXSLT_STATIC -DLIBEXSLT_STATIC
14 ADDLDFLAGS = -all-static
15 endif
16
17 swfmill_CFLAGS = $(XML_CFLAGS) $(XSLT_CFLAGS) $(ADDCFLAGS) -I./swft/ -I./xslt/
18 swfmill_CXXFLAGS = $(swfmill_CFLAGS)
19 swfmill_LDADD = $(XML_LIBS) $(XSLT_LIBS) swft/libswft.la xslt/libswfmillxslt.la
20 swfmill_LDFLAGS = $(ADDLDFLAGS)
21
22 BUILT_SOURCES = \
23         gSWFParseXML.cpp \
24         gSWFWriteXML.cpp \
25         gSWFParser.cpp \
26         gSWFWriter.cpp \
27         gSWFDumper.cpp \
28         gSWFBasics.cpp \
29         gSWFSize.cpp \
30         $(NULL)
31        
32 # rule to build the generated sources from xsl
33 #gSWFParseXML.cpp gSWFWriteXML.cpp gSWFParser.cpp gSWFWriter.cpp gSWFDumper.cpp gSWFBasics.cpp gSWFSize.cpp : xsl/mk.xsl xsl/source.xml xsl/basic.xsl xsl/basics.xsl xsl/header.xsl xsl/parser.xsl xsl/parsexml.xsl xsl/size.xsl xsl/writer.xsl xsl/writexml.xsl
34 #       xsltproc xsl/mk.sh xsl/source.xml
35
36 swfmill_SOURCES = \
37         base64.c \
38         Geom.cpp \
39         SWFReader.cpp \
40         SWFWriter.cpp \
41         SWFFile.cpp \
42         SWFItem.cpp \
43         SWFTag.cpp \
44         SWFAction.cpp \
45         SWFFilter.cpp \
46         SWFTrait.cpp \
47         SWFShapeItem.cpp \
48         SWFGlyphList.cpp \
49         SWFShapeMaker.cpp \
50         \
51         gSWFParseXML.cpp \
52         gSWFWriteXML.cpp \
53         gSWFParser.cpp \
54         gSWFWriter.cpp \
55         gSWFDumper.cpp \
56         gSWFBasics.cpp \
57         gSWFSize.cpp \
58         \
59         swfmill.cpp \
60         $(NULL)
61
62 noinst_HEADERS = \
63         base64.h \
64         Geom.h \
65         SWFBasic.h \
66         SWFReader.h \
67         SWFWriter.h \
68         SWFFile.h \
69         SWFItem.h \
70         SWFIdItem.h \
71         SWFIdItems.h \
72         SWFTag.h \
73         SWFAction.h \
74         SWFFilter.h \
75         SWFTrait.h \
76         SWFShapeItem.h \
77         SWFGlyphList.h \
78         SWFList.h \
79         SWFShapeMaker.h \
80         SWF.h \
81         $(NULL)
82
83 SUBDIRS = \
84         swft \
85         xslt \
86         $(NULL)
Note: See TracBrowser for help on using the browser.