summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-02-23 16:20:21 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-02-23 16:20:21 +0000
commit975038c912b76c56c552ae51bac8a36f0c3bd160 (patch)
tree66aca76efc7f40af2047117eea3dae40b9a6f5d1 /lib
parent9de013a2b0571e5e748237e40fd849e2692d4e79 (diff)
downloadmailutils-975038c912b76c56c552ae51bac8a36f0c3bd160.tar.gz
mailutils-975038c912b76c56c552ae51bac8a36f0c3bd160.tar.bz2
Updated
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am71
1 files changed, 58 insertions, 13 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index f09f3c0ee..8d1707879 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -1,6 +1,6 @@
1## Process this file with GNU Automake to create Makefile.in 1## Process this file with GNU Automake to create Makefile.in
2 2
3## Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc. 3## Copyright (C) 1999, 2000, 2001, 2002, 2005 Free Software Foundation, Inc.
4## 4##
5## GNU Mailutils is free software; you can redistribute it and/or 5## GNU Mailutils is free software; you can redistribute it and/or
6## modify it under the terms of the GNU General Public License as 6## modify it under the terms of the GNU General Public License as
@@ -19,24 +19,69 @@
19 19
20noinst_LTLIBRARIES = libmailutils.la 20noinst_LTLIBRARIES = libmailutils.la
21 21
22INCLUDES = -I${top_srcdir}/include -I${top_builddir}/include/mailutils/gnu @INTLINCS@ 22INCLUDES = -I${top_srcdir}/include -I${top_srcdir}/mailbox -I${top_builddir}/include/mailutils/gnu @INTLINCS@
23libmailutils_la_SOURCES = \ 23libmailutils_la_SOURCES = \
24 basename.c\
25 daemon.c\ 24 daemon.c\
26 md5.c\
27 mu_dbm.c\ 25 mu_dbm.c\
28 xstrdup.c\ 26 xalloc_die.c
29 xmalloc.c
30 27
31EXTRA_DIST = alloca.c fnmatch.c getpass.c malloc.c obstack.c \ 28EXTRA_DIST = utmp.c
32 realloc.c setenv.c snprintf.c strncasecmp.c \
33 strcasecmp.c strsignal.c xstrtol.c vasprintf.c vsyslog.c \
34 utmp.c
35 29
36noinst_HEADERS = error.h fnmatch.h md5.h \ 30noinst_HEADERS =\
37 mu_dbm.h\ 31 mu_dbm.h\
38 snprintf.h xalloc.h xstrtol.h obstack.h \
39 mu_asprintf.h 32 mu_asprintf.h
40 33
41libmailutils_la_LIBADD = @LTLIBOBJS@ @ALLOCA@ 34libmailutils_la_LIBADD = @LTLIBOBJS@
35
36BUILT_SOURCES=
37MOSTLYCLEANFILES=
38
39##:## EOF marker for gnulib-sync script. Please, do not remove ##:##
40## Do not change anything below this line ##
41libmailutils_la_SOURCES += allocsa.h allocsa.c
42EXTRA_DIST += allocsa.valgrind
43
44
45libmailutils_la_SOURCES += exit.h
46
47libmailutils_la_SOURCES += exitfail.h exitfail.c
48
49BUILT_SOURCES += $(STDBOOL_H)
50EXTRA_DIST += stdbool_.h
51
52# We need the following in order to create an <stdbool.h> when the system
53# doesn't have one that works.
54all-local $(libmailutils_la_OBJECTS): $(STDBOOL_H)
55stdbool.h: stdbool_.h
56 sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool_.h > $@-t
57 mv $@-t $@
58MOSTLYCLEANFILES += stdbool.h stdbool.h-t
59
60libmailutils_la_SOURCES += xalloc.h xmalloc.c
61
62BUILT_SOURCES += $(FNMATCH_H)
63EXTRA_DIST += fnmatch_.h fnmatch_loop.c
64
65# We need the following in order to create an <fnmatch.h> when the system
66# doesn't have one that supports the required API.
67all-local $(libmailutils_la_OBJECTS): $(FNMATCH_H)
68fnmatch.h: fnmatch_.h
69 cp $(srcdir)/fnmatch_.h $@-t
70 mv $@-t $@
71MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t
72
73libmailutils_la_SOURCES += getpass.h
74
75
76
77
78libmailutils_la_SOURCES += setenv.h
79
80libmailutils_la_SOURCES += snprintf.h
81
82libmailutils_la_SOURCES += xstrtol.h xstrtol.c xstrtoul.c
83
84libmailutils_la_SOURCES += vasprintf.h
85
86libmailutils_la_SOURCES += xsize.h
42 87

Return to:

Send suggestions and report system problems to the System administrator.