-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c015326
Showing
614 changed files
with
87,848 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
DIST_SUBDIRS = xml help wingdingfont patterns | ||
|
||
SUBDIRS = xml help wingdingfont patterns . | ||
|
||
DEFS = @DEFS@ -DVERSION=\"@VERSION@\" -DXMLCONFIG=\"$(pkgdatadir)/wvConfig.xml\" -DHTMLCONFIG=\"$(pkgdatadir)/wvHtml.xml\" -DWVDATADIR=\"$(datadir)/wv\" | ||
|
||
INCLUDES = -I. -I$(top_builddir) -I$(srcdir) | ||
|
||
CFLAGS = @CFLAGS@ @ANSI_CFLAGS@ | ||
|
||
CPPFLAGS = @CPPFLAGS@ @DEPS_CFLAGS@ @OPT_CFLAGS@ | ||
|
||
WVLIBS = @DEPS_LIBS@ @OPT_LIBS@ -lm | ||
|
||
wvhdrdir = $(includedir)/wv | ||
|
||
wvhdr_HEADERS = wv.h | ||
|
||
bin_SCRIPTS = wvCleanLatex wvHtml wvDocBook wvAbw wvMime wvPS wvDVI wvLatex wvPDF wvText wvWml | ||
|
||
bin_PROGRAMS = wvWare wvRTF wvConvert wvVersion wvSummary | ||
|
||
lib_LTLIBRARIES = libwv.la | ||
|
||
GETOPT = @LIBOBJS@ | ||
|
||
wvSummary_LDADD = libwv.la $(WVLIBS) $(GETOPT) | ||
wvWare_LDADD = libwv.la $(WVLIBS) $(GETOPT) | ||
wvRTF_LDADD = libwv.la $(WVLIBS) $(GETOPT) | ||
wvConvert_LDADD = libwv.la $(WVLIBS) $(GETOPT) | ||
wvVersion_LDADD = libwv.la $(WVLIBS) $(GETOPT) | ||
|
||
libwv_la_LIBADD = $(WVLIBS) | ||
libwv_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) -release $(LT_RELEASE) -export-dynamic -no-undefined | ||
libwv_la_SOURCES = \ | ||
winmmap.c \ | ||
list.c \ | ||
stylesheet.c \ | ||
sprm.c \ | ||
blip.c \ | ||
utf.c \ | ||
field.c \ | ||
decompresswmf.c \ | ||
dop.c \ | ||
roman.c \ | ||
fib.c \ | ||
frd.c \ | ||
atrd.c \ | ||
sed.c \ | ||
font.c \ | ||
ffn.c \ | ||
fld.c \ | ||
bkf.c \ | ||
dttm.c \ | ||
generic.c \ | ||
error.c \ | ||
unicode.c \ | ||
sttbf.c \ | ||
xst.c \ | ||
fspa.c \ | ||
fdoa.c \ | ||
lst.c \ | ||
lvl.c \ | ||
lfo.c \ | ||
filetime.c \ | ||
chp.c \ | ||
brc.c \ | ||
anld.c \ | ||
shd.c \ | ||
dcs.c \ | ||
numrm.c \ | ||
asumyi.c \ | ||
version.c \ | ||
lspd.c \ | ||
phe.c \ | ||
tlp.c \ | ||
tc.c \ | ||
tap.c \ | ||
pap.c \ | ||
bintree.c \ | ||
decode_simple.c \ | ||
pcd.c \ | ||
prm.c \ | ||
clx.c \ | ||
bte.c \ | ||
bx.c \ | ||
fkp.c \ | ||
text.c \ | ||
decode_complex.c \ | ||
wvTextEngine.c \ | ||
wvHtmlEngine.c \ | ||
wvConfig.c \ | ||
wvparse.c \ | ||
reasons.c \ | ||
sep.c \ | ||
anlv.c \ | ||
olst.c \ | ||
asumy.c \ | ||
bkd.c \ | ||
bkl.c \ | ||
dogrid.c \ | ||
doptypography.c \ | ||
pgd.c \ | ||
rs.c \ | ||
rr.c \ | ||
tbd.c \ | ||
ftxbxs.c \ | ||
wkb.c \ | ||
picf.c \ | ||
crc32.c \ | ||
md5.c \ | ||
rc4.c \ | ||
decrypt97.c \ | ||
decrypt95.c \ | ||
twips.c \ | ||
table.c \ | ||
symbol.c \ | ||
mtextra.c \ | ||
fopt.c \ | ||
fbse.c \ | ||
escher.c \ | ||
basename.c \ | ||
isbidi.c \ | ||
plcf.c \ | ||
support.c \ | ||
laolareplace.c | ||
|
||
OTHERHEADERS = \ | ||
bintree.h \ | ||
crc32.h \ | ||
getopt.h \ | ||
hdr.h \ | ||
md5.h \ | ||
plan9.h \ | ||
rc4.h \ | ||
roman.h \ | ||
utf.h \ | ||
winmmap.h \ | ||
wvinternal.h | ||
|
||
OTHERSCRIPTS = wvMime | ||
|
||
pkgconfigdir = $(libdir)/pkgconfig | ||
pkgconfig_DATA = wv-1.0.pc | ||
|
||
EXTRA_DIST = wv-1.0.pc.in autogen.sh $(OTHERHEADERS) $(OTHERSCRIPTS) | ||
|
Oops, something went wrong.