annotate src/Makefile.am @ 59:7d5c637aaafb

General cleanup and code fixes. Use autoscan to cleanup our autoconf system. Use autoconf to detect when we need to use our XGetopt files and other header files. Decode BCC field. Fix missing LE32_CPU byte swapping for FILETIME types.
author Carl Byington <carl@five-ten-sg.com>
date Thu, 14 Feb 2008 14:55:32 -0800
parents f6db1f060a95
children cfd6175f9334
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21
e5418051878c switch to automake/autoconf
carl
parents: 16
diff changeset
1 hfiles = $(wildcard *.h)
34
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 21
diff changeset
2 bin_PROGRAMS = lspst readpst readpstlog pst2ldif
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 21
diff changeset
3 noinst_PROGRAMS = deltasearch dumpblocks getidblock
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 21
diff changeset
4
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 34
diff changeset
5 lspst_SOURCES = $(hfiles) debug.c libpst.c libstrfunc.c lspst.c timeconv.c vbuf.c generic.c
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 34
diff changeset
6 readpst_SOURCES = $(hfiles) readpst.c libpst.c timeconv.c libstrfunc.c debug.c lzfu.c vbuf.c generic.c
34
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 21
diff changeset
7 readpstlog_SOURCES = $(hfiles) readpstlog.c debug.c
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 34
diff changeset
8 pst2ldif_SOURCES = $(hfiles) pst2ldif.cpp libpst.c timeconv.c libstrfunc.c debug.c lzfu.c vbuf.c generic.c
34
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 21
diff changeset
9
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 21
diff changeset
10 deltasearch_SOURCES = deltasearch.cpp debug.c
43
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 34
diff changeset
11 dumpblocks_SOURCES = dumpblocks.c debug.c libpst.c libstrfunc.c timeconv.c vbuf.c generic.c
f6db1f060a95 start on outlook 2003 64 bit format
carl
parents: 34
diff changeset
12 getidblock_SOURCES = getidblock.c debug.c libpst.c libstrfunc.c timeconv.c vbuf.c generic.c
34
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 21
diff changeset
13
59
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 43
diff changeset
14 if NEED_XGETOPT
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 43
diff changeset
15 lspst_SOURCES += XGetopt.c
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 43
diff changeset
16 readpst_SOURCES += XGetopt.c
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 43
diff changeset
17 readpstlog_SOURCES += XGetopt.c
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 43
diff changeset
18 pst2ldif_SOURCES += XGetopt.c
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 43
diff changeset
19 endif
7d5c637aaafb General cleanup and code fixes.
Carl Byington <carl@five-ten-sg.com>
parents: 43
diff changeset
20
34
07177825c91b fix signed/unsigned to allow very small pst files with only leaf nodes
carl
parents: 21
diff changeset
21 EXTRA_DIST = testdebug.c
16
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
22
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
23 # set the include path found by configure
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
24 INCLUDES= $(all_includes)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
25
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
26 # the library search path.
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
27 lspst_LDFLAGS = $(all_libraries)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
28 readpst_LDFLAGS = $(all_libraries)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
29 readpstlog_LDFLAGS = $(all_libraries)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
30 pst2ldif_LDFLAGS = $(all_libraries)
c508ee15dfca switch to automake/autoconf
carl
parents:
diff changeset
31