comparison src/Makefile.am @ 63:cfd6175f9334

Start work on pst2dii to convert to Summation dii load file format.
author Carl Byington <carl@five-ten-sg.com>
date Sat, 23 Feb 2008 14:36:17 -0800
parents 7d5c637aaafb
children 3cb02cb1e6cd
comparison
equal deleted inserted replaced
62:ee4e0d00bc94 63:cfd6175f9334
1 hfiles = $(wildcard *.h) 1 hfiles = $(wildcard *.h)
2 bin_PROGRAMS = lspst readpst readpstlog pst2ldif 2 bin_PROGRAMS = lspst readpst readpstlog pst2ldif
3 if BUILD_DII
4 bin_PROGRAMS += pst2dii
5 endif
3 noinst_PROGRAMS = deltasearch dumpblocks getidblock 6 noinst_PROGRAMS = deltasearch dumpblocks getidblock
4 7
5 lspst_SOURCES = $(hfiles) debug.c libpst.c libstrfunc.c lspst.c timeconv.c vbuf.c generic.c 8 lspst_SOURCES = $(hfiles) lspst.c libpst.c timeconv.c libstrfunc.c debug.c vbuf.c generic.c
6 readpst_SOURCES = $(hfiles) readpst.c libpst.c timeconv.c libstrfunc.c debug.c lzfu.c vbuf.c generic.c 9 readpst_SOURCES = $(hfiles) readpst.c libpst.c timeconv.c libstrfunc.c debug.c lzfu.c vbuf.c generic.c
7 readpstlog_SOURCES = $(hfiles) readpstlog.c debug.c 10 readpstlog_SOURCES = $(hfiles) readpstlog.c debug.c
8 pst2ldif_SOURCES = $(hfiles) pst2ldif.cpp libpst.c timeconv.c libstrfunc.c debug.c lzfu.c vbuf.c generic.c 11 pst2ldif_SOURCES = $(hfiles) pst2ldif.cpp libpst.c timeconv.c libstrfunc.c debug.c lzfu.c vbuf.c generic.c
12 pst2dii_SOURCES = $(hfiles) pst2dii.cpp libpst.c timeconv.c libstrfunc.c debug.c lzfu.c vbuf.c generic.c
9 13
10 deltasearch_SOURCES = deltasearch.cpp debug.c 14 deltasearch_SOURCES = deltasearch.cpp debug.c
11 dumpblocks_SOURCES = dumpblocks.c debug.c libpst.c libstrfunc.c timeconv.c vbuf.c generic.c 15 dumpblocks_SOURCES = dumpblocks.c debug.c libpst.c libstrfunc.c timeconv.c vbuf.c generic.c
12 getidblock_SOURCES = getidblock.c debug.c libpst.c libstrfunc.c timeconv.c vbuf.c generic.c 16 getidblock_SOURCES = getidblock.c debug.c libpst.c libstrfunc.c timeconv.c vbuf.c generic.c
13 17
14 if NEED_XGETOPT 18 if NEED_XGETOPT
15 lspst_SOURCES += XGetopt.c 19 lspst_SOURCES += XGetopt.c
16 readpst_SOURCES += XGetopt.c 20 readpst_SOURCES += XGetopt.c
17 readpstlog_SOURCES += XGetopt.c 21 readpstlog_SOURCES += XGetopt.c
18 pst2ldif_SOURCES += XGetopt.c 22 pst2ldif_SOURCES += XGetopt.c
23 pst2dii_SOURCES += XGetopt.c
19 endif 24 endif
20 25
21 EXTRA_DIST = testdebug.c 26 EXTRA_DIST = testdebug.c
22 27
23 # set the include path found by configure 28 # set the include path found by configure
26 # the library search path. 31 # the library search path.
27 lspst_LDFLAGS = $(all_libraries) 32 lspst_LDFLAGS = $(all_libraries)
28 readpst_LDFLAGS = $(all_libraries) 33 readpst_LDFLAGS = $(all_libraries)
29 readpstlog_LDFLAGS = $(all_libraries) 34 readpstlog_LDFLAGS = $(all_libraries)
30 pst2ldif_LDFLAGS = $(all_libraries) 35 pst2ldif_LDFLAGS = $(all_libraries)
36 pst2dii_LDFLAGS = $(all_libraries) -lgd -lpng -lz -lfreetype -lm
31 37