Mercurial > libpst
comparison src/Makefile.am @ 308:97c53c6868ab
add -m option to readpst to create Outlook .msg files
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sun, 13 Dec 2009 14:48:20 -0800 |
parents | 2f38c4ce606f |
children | c4537664ff50 |
comparison
equal
deleted
inserted
replaced
243:0199af9730b2 | 308:97c53c6868ab |
---|---|
35 bin_PROGRAMS = lspst readpst pst2ldif | 35 bin_PROGRAMS = lspst readpst pst2ldif |
36 if BUILD_DII | 36 if BUILD_DII |
37 bin_PROGRAMS += pst2dii | 37 bin_PROGRAMS += pst2dii |
38 endif | 38 endif |
39 lspst_SOURCES = lspst.c $(common_header) | 39 lspst_SOURCES = lspst.c $(common_header) |
40 readpst_SOURCES = readpst.c $(common_header) | 40 readpst_SOURCES = readpst.c $(common_header) msg.cpp msg.h |
41 pst2ldif_SOURCES = pst2ldif.cpp $(common_header) | 41 pst2ldif_SOURCES = pst2ldif.cpp $(common_header) |
42 pst2dii_SOURCES = pst2dii.cpp $(common_header) | 42 pst2dii_SOURCES = pst2dii.cpp $(common_header) |
43 deltasearch_SOURCES = deltasearch.cpp $(common_header) | 43 deltasearch_SOURCES = deltasearch.cpp $(common_header) |
44 dumpblocks_SOURCES = dumpblocks.c $(common_header) | 44 dumpblocks_SOURCES = dumpblocks.c $(common_header) |
45 getidblock_SOURCES = getidblock.c $(common_header) | 45 getidblock_SOURCES = getidblock.c $(common_header) |
46 | 46 |
47 lspst_CFLAGS = $(AM_CFLAGS) | 47 readpst_CPPFLAGS = $(AM_CPPFLAGS) $(GSF_FLAGS) |
48 readpst_CFLAGS = $(AM_CFLAGS) | |
49 pst2ldif_CFLAGS = $(AM_CFLAGS) | |
50 pst2dii_CFLAGS = $(AM_CFLAGS) | |
51 deltasearch_CFLAGS = $(AM_CFLAGS) | |
52 dumpblocks_CFLAGS = $(AM_CFLAGS) | |
53 getidblock_CFLAGS = $(AM_CFLAGS) | |
54 | 48 |
55 lspst_DEPENDENCIES = libpst.la | 49 lspst_DEPENDENCIES = libpst.la |
56 readpst_DEPENDENCIES = libpst.la | 50 readpst_DEPENDENCIES = libpst.la |
57 pst2ldif_DEPENDENCIES = libpst.la | 51 pst2ldif_DEPENDENCIES = libpst.la |
58 pst2dii_DEPENDENCIES = libpst.la | 52 pst2dii_DEPENDENCIES = libpst.la |
86 # set the include path found by configure | 80 # set the include path found by configure |
87 INCLUDES= -I$(srcdir)/.. $(all_includes) | 81 INCLUDES= -I$(srcdir)/.. $(all_includes) |
88 | 82 |
89 # the library search path. | 83 # the library search path. |
90 lspst_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 84 lspst_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
91 readpst_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) $(REGEXLIB) | 85 readpst_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) $(REGEXLIB) $(GSF_LIBS) |
92 pst2ldif_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 86 pst2ldif_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
93 pst2dii_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) -lgd | 87 pst2dii_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) -lgd |
94 dumpblocks_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 88 dumpblocks_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
95 getidblock_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 89 getidblock_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
96 deltasearch_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 90 deltasearch_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |