Mercurial > libpst
comparison src/Makefile.am @ 132:5e4d6faada34
fix from Fridrich Strba for parallel make
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Fri, 06 Feb 2009 20:38:04 -0800 |
parents | bdb38b434c0a |
children | 2ec889a79e51 |
comparison
equal
deleted
inserted
replaced
131:dd905e537728 | 132:5e4d6faada34 |
---|---|
25 libstrfunc.c \ | 25 libstrfunc.c \ |
26 lzfu.c \ | 26 lzfu.c \ |
27 timeconv.c \ | 27 timeconv.c \ |
28 vbuf.c | 28 vbuf.c |
29 | 29 |
30 | |
30 if NEED_XGETOPT | 31 if NEED_XGETOPT |
31 common_source += XGetopt.c | 32 common_source += XGetopt.c |
32 common_header += XGetopt.h | 33 common_header += XGetopt.h |
33 endif | 34 endif |
34 | 35 |
35 noinst_PROGRAMS = deltasearch dumpblocks getidblock | 36 noinst_PROGRAMS = deltasearch dumpblocks getidblock |
36 bin_PROGRAMS = lspst readpst readpstlog pst2ldif | 37 bin_PROGRAMS = lspst readpst readpstlog pst2ldif |
37 if BUILD_DII | 38 if BUILD_DII |
38 bin_PROGRAMS += pst2dii | 39 bin_PROGRAMS += pst2dii |
39 endif | 40 endif |
40 lspst_SOURCES = lspst.c $(common_header) | 41 lspst_SOURCES = lspst.c $(common_header) |
41 readpst_SOURCES = readpst.c $(common_header) | 42 readpst_SOURCES = readpst.c $(common_header) |
42 readpstlog_SOURCES = readpstlog.c $(common_header) | 43 readpstlog_SOURCES = readpstlog.c $(common_header) |
43 pst2ldif_SOURCES = pst2ldif.cpp $(common_header) | 44 pst2ldif_SOURCES = pst2ldif.cpp $(common_header) |
44 pst2dii_SOURCES = pst2dii.cpp $(common_header) | 45 pst2dii_SOURCES = pst2dii.cpp $(common_header) |
45 deltasearch_SOURCES = deltasearch.cpp $(common_header) | 46 deltasearch_SOURCES = deltasearch.cpp $(common_header) |
46 dumpblocks_SOURCES = dumpblocks.c $(common_header) | 47 dumpblocks_SOURCES = dumpblocks.c $(common_header) |
47 getidblock_SOURCES = getidblock.c $(common_header) | 48 getidblock_SOURCES = getidblock.c $(common_header) |
48 | 49 |
49 lspst_CFLAGS = $(AM_CFLAGS) | 50 lspst_CFLAGS = $(AM_CFLAGS) |
50 readpst_CFLAGS = $(AM_CFLAGS) | 51 readpst_CFLAGS = $(AM_CFLAGS) |
51 readpstlog_CFLAGS = $(AM_CFLAGS) | 52 readpstlog_CFLAGS = $(AM_CFLAGS) |
52 pst2ldif_CFLAGS = $(AM_CFLAGS) | 53 pst2ldif_CFLAGS = $(AM_CFLAGS) |
53 pst2dii_CFLAGS = $(AM_CFLAGS) | 54 pst2dii_CFLAGS = $(AM_CFLAGS) |
54 deltasearch_CFLAGS = $(AM_CFLAGS) | 55 deltasearch_CFLAGS = $(AM_CFLAGS) |
55 dumpblocks_CFLAGS = $(AM_CFLAGS) | 56 dumpblocks_CFLAGS = $(AM_CFLAGS) |
56 getidblock_CFLAGS = $(AM_CFLAGS) | 57 getidblock_CFLAGS = $(AM_CFLAGS) |
58 | |
59 lspst_DEPENDENCIES = libpst.la | |
60 readpst_DEPENDENCIES = libpst.la | |
61 readpstlog_DEPENDENCIES = libpst.la | |
62 pst2ldif_DEPENDENCIES = libpst.la | |
63 pst2dii_DEPENDENCIES = libpst.la | |
64 deltasearch_DEPENDENCIES = libpst.la | |
65 dumpblocks_DEPENDENCIES = libpst.la | |
66 getidblock_DEPENDENCIES = libpst.la | |
57 | 67 |
58 if STATIC_TOOLS | 68 if STATIC_TOOLS |
59 noinst_LTLIBRARIES = libpst.la | 69 noinst_LTLIBRARIES = libpst.la |
60 else | 70 else |
61 lib_LTLIBRARIES = libpst.la | 71 lib_LTLIBRARIES = libpst.la |
88 pst2ldif_LDADD = $(all_libraries) $(PSTLIB) $(ICONVLIB) | 98 pst2ldif_LDADD = $(all_libraries) $(PSTLIB) $(ICONVLIB) |
89 pst2dii_LDADD = $(all_libraries) $(PSTLIB) $(ICONVLIB) -lgd | 99 pst2dii_LDADD = $(all_libraries) $(PSTLIB) $(ICONVLIB) -lgd |
90 dumpblocks_LDADD = $(all_libraries) $(PSTLIB) $(ICONVLIB) | 100 dumpblocks_LDADD = $(all_libraries) $(PSTLIB) $(ICONVLIB) |
91 getidblock_LDADD = $(all_libraries) $(PSTLIB) $(ICONVLIB) | 101 getidblock_LDADD = $(all_libraries) $(PSTLIB) $(ICONVLIB) |
92 deltasearch_LDADD = $(all_libraries) $(PSTLIB) $(ICONVLIB) | 102 deltasearch_LDADD = $(all_libraries) $(PSTLIB) $(ICONVLIB) |
103 | |
104 |