Mercurial > libpst
comparison src/Makefile.am @ 202:2f38c4ce606f
remove readpstlog, switch to plain ascii debug log files
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 18 May 2009 15:55:05 -0700 |
parents | cf3df962f1e5 |
children | 85d77d7b034b 97c53c6868ab |
comparison
equal
deleted
inserted
replaced
201:3850a3b11745 | 202:2f38c4ce606f |
---|---|
30 common_source += XGetopt.c | 30 common_source += XGetopt.c |
31 common_header += XGetopt.h | 31 common_header += XGetopt.h |
32 endif | 32 endif |
33 | 33 |
34 noinst_PROGRAMS = deltasearch dumpblocks getidblock | 34 noinst_PROGRAMS = deltasearch dumpblocks getidblock |
35 bin_PROGRAMS = lspst readpst readpstlog 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) |
41 readpstlog_SOURCES = readpstlog.c $(common_header) | |
42 pst2ldif_SOURCES = pst2ldif.cpp $(common_header) | 41 pst2ldif_SOURCES = pst2ldif.cpp $(common_header) |
43 pst2dii_SOURCES = pst2dii.cpp $(common_header) | 42 pst2dii_SOURCES = pst2dii.cpp $(common_header) |
44 deltasearch_SOURCES = deltasearch.cpp $(common_header) | 43 deltasearch_SOURCES = deltasearch.cpp $(common_header) |
45 dumpblocks_SOURCES = dumpblocks.c $(common_header) | 44 dumpblocks_SOURCES = dumpblocks.c $(common_header) |
46 getidblock_SOURCES = getidblock.c $(common_header) | 45 getidblock_SOURCES = getidblock.c $(common_header) |
47 | 46 |
48 lspst_CFLAGS = $(AM_CFLAGS) | 47 lspst_CFLAGS = $(AM_CFLAGS) |
49 readpst_CFLAGS = $(AM_CFLAGS) | 48 readpst_CFLAGS = $(AM_CFLAGS) |
50 readpstlog_CFLAGS = $(AM_CFLAGS) | |
51 pst2ldif_CFLAGS = $(AM_CFLAGS) | 49 pst2ldif_CFLAGS = $(AM_CFLAGS) |
52 pst2dii_CFLAGS = $(AM_CFLAGS) | 50 pst2dii_CFLAGS = $(AM_CFLAGS) |
53 deltasearch_CFLAGS = $(AM_CFLAGS) | 51 deltasearch_CFLAGS = $(AM_CFLAGS) |
54 dumpblocks_CFLAGS = $(AM_CFLAGS) | 52 dumpblocks_CFLAGS = $(AM_CFLAGS) |
55 getidblock_CFLAGS = $(AM_CFLAGS) | 53 getidblock_CFLAGS = $(AM_CFLAGS) |
56 | 54 |
57 lspst_DEPENDENCIES = libpst.la | 55 lspst_DEPENDENCIES = libpst.la |
58 readpst_DEPENDENCIES = libpst.la | 56 readpst_DEPENDENCIES = libpst.la |
59 readpstlog_DEPENDENCIES = libpst.la | |
60 pst2ldif_DEPENDENCIES = libpst.la | 57 pst2ldif_DEPENDENCIES = libpst.la |
61 pst2dii_DEPENDENCIES = libpst.la | 58 pst2dii_DEPENDENCIES = libpst.la |
62 deltasearch_DEPENDENCIES = libpst.la | 59 deltasearch_DEPENDENCIES = libpst.la |
63 dumpblocks_DEPENDENCIES = libpst.la | 60 dumpblocks_DEPENDENCIES = libpst.la |
64 getidblock_DEPENDENCIES = libpst.la | 61 getidblock_DEPENDENCIES = libpst.la |
79 endif | 76 endif |
80 | 77 |
81 libpst_la_SOURCES = $(common_source) $(common_header) | 78 libpst_la_SOURCES = $(common_source) $(common_header) |
82 libpst_la_LIBADD = $(LTLIBICONV) | 79 libpst_la_LIBADD = $(LTLIBICONV) |
83 | 80 |
84 | 81 EXTRA_DIST = |
85 EXTRA_DIST = testdebug.c | |
86 if !NEED_XGETOPT | 82 if !NEED_XGETOPT |
87 EXTRA_DIST += XGetopt.c XGetopt.h | 83 EXTRA_DIST += XGetopt.c XGetopt.h |
88 endif | 84 endif |
89 | 85 |
90 # set the include path found by configure | 86 # set the include path found by configure |
91 INCLUDES= -I$(srcdir)/.. $(all_includes) | 87 INCLUDES= -I$(srcdir)/.. $(all_includes) |
92 | 88 |
93 # the library search path. | 89 # the library search path. |
94 lspst_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 90 lspst_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
95 readpst_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) $(REGEXLIB) | 91 readpst_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) $(REGEXLIB) |
96 readpstlog_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | |
97 pst2ldif_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 92 pst2ldif_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
98 pst2dii_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) -lgd | 93 pst2dii_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) -lgd |
99 dumpblocks_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 94 dumpblocks_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
100 getidblock_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 95 getidblock_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
101 deltasearch_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 96 deltasearch_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |