Mercurial > libpst
comparison src/Makefile.am @ 258:8ad8fd1c5451
check return codes from forked processes
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sat, 16 Apr 2011 10:09:28 -0700 |
parents | 76702156656b |
children | c4537664ff50 |
comparison
equal
deleted
inserted
replaced
257:c947b8812120 | 258:8ad8fd1c5451 |
---|---|
38 common_source += XGetopt.c | 38 common_source += XGetopt.c |
39 common_header += XGetopt.h | 39 common_header += XGetopt.h |
40 endif | 40 endif |
41 | 41 |
42 noinst_PROGRAMS = deltasearch dumpblocks getidblock | 42 noinst_PROGRAMS = deltasearch dumpblocks getidblock |
43 bin_PROGRAMS = lspst readpst pst2ldif | 43 bin_PROGRAMS = lspst readpst pst2ldif nick2ldif |
44 if BUILD_DII | 44 if BUILD_DII |
45 bin_PROGRAMS += pst2dii | 45 bin_PROGRAMS += pst2dii |
46 endif | 46 endif |
47 lspst_SOURCES = lspst.c $(common_header) | 47 lspst_SOURCES = lspst.c $(common_header) |
48 readpst_SOURCES = readpst.c $(common_header) | 48 readpst_SOURCES = readpst.c $(common_header) |
49 pst2ldif_SOURCES = pst2ldif.cpp $(common_header) | 49 pst2ldif_SOURCES = pst2ldif.cpp $(common_header) |
50 pst2dii_SOURCES = pst2dii.cpp $(common_header) | 50 pst2dii_SOURCES = pst2dii.cpp $(common_header) |
51 deltasearch_SOURCES = deltasearch.cpp $(common_header) | 51 deltasearch_SOURCES = deltasearch.cpp $(common_header) |
52 dumpblocks_SOURCES = dumpblocks.c $(common_header) | 52 dumpblocks_SOURCES = dumpblocks.c $(common_header) |
53 getidblock_SOURCES = getidblock.c $(common_header) | 53 getidblock_SOURCES = getidblock.c $(common_header) |
54 nick2ldif_SOURCES = nick2ldif.cpp $(common_header) | |
54 | 55 |
55 | 56 |
56 lspst_DEPENDENCIES = libpst.la | 57 lspst_DEPENDENCIES = libpst.la |
57 readpst_DEPENDENCIES = libpst.la | 58 readpst_DEPENDENCIES = libpst.la |
58 pst2ldif_DEPENDENCIES = libpst.la | 59 pst2ldif_DEPENDENCIES = libpst.la |
59 pst2dii_DEPENDENCIES = libpst.la | 60 pst2dii_DEPENDENCIES = libpst.la |
60 deltasearch_DEPENDENCIES = libpst.la | 61 deltasearch_DEPENDENCIES = libpst.la |
61 dumpblocks_DEPENDENCIES = libpst.la | 62 dumpblocks_DEPENDENCIES = libpst.la |
62 getidblock_DEPENDENCIES = libpst.la | 63 getidblock_DEPENDENCIES = libpst.la |
64 nick2ldif_DEPENDENCIES = libpst.la | |
63 | 65 |
64 if STATIC_TOOLS | 66 if STATIC_TOOLS |
65 noinst_LTLIBRARIES = libpst.la | 67 noinst_LTLIBRARIES = libpst.la |
66 else | 68 else |
67 lib_LTLIBRARIES = libpst.la | 69 lib_LTLIBRARIES = libpst.la |
90 # the library search path. | 92 # the library search path. |
91 lspst_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 93 lspst_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
92 readpst_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) $(REGEXLIB) | 94 readpst_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) $(REGEXLIB) |
93 pst2ldif_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 95 pst2ldif_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
94 pst2dii_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) -lgd | 96 pst2dii_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) -lgd |
97 deltasearch_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | |
95 dumpblocks_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 98 dumpblocks_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
96 getidblock_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 99 getidblock_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
97 deltasearch_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) | 100 nick2ldif_LDADD = $(all_libraries) $(PSTLIB) $(LTLIBICONV) |
98 | 101 |
99 | 102 |