]> Dogcows Code - chaz/tar/blob - lib/Makefile.am
Merge changes from gnulib.
[chaz/tar] / lib / Makefile.am
1 # Makefile for GNU tar library.
2
3 # Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2003 Free
4 # Software Foundation, Inc.
5
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 2, or (at your option)
9 ## any later version.
10
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ## GNU General Public License for more details.
15
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 ## 02111-1307, USA.
20
21 noinst_LIBRARIES = libtar.a
22
23 libtar_a_SOURCES = prepargs.c prepargs.h
24
25 libtar_a_LIBADD = $(LIBOBJS) $(ALLOCA)
26 libtar_a_DEPENDENCIES = $(libtar_a_LIBADD)
27
28 BUILT_SOURCES =
29 EXTRA_DIST =
30 MAINTAINERCLEANFILES =
31 MOSTLYCLEANFILES =
32 lib_OBJECTS = $(libtar_a_OBJECTS)
33
34
35 # gnulib modules
36
37 # alloca
38 BUILT_SOURCES += $(ALLOCA_H)
39 EXTRA_DIST += alloca_.h
40
41 # We need the following in order to create an <alloca.h> when the system
42 # doesn't have one that works with the given compiler.
43 all-local $(lib_OBJECTS): $(ALLOCA_H)
44 alloca.h: alloca_.h
45 cp $(srcdir)/alloca_.h $@-t
46 mv $@-t $@
47 MOSTLYCLEANFILES += alloca.h alloca.h-t
48
49 # argmatch
50 libtar_a_SOURCES += argmatch.h argmatch.c
51
52 # backupfile
53 libtar_a_SOURCES += backupfile.h backupfile.c addext.c
54
55 # dirname
56 libtar_a_SOURCES += dirname.h dirname.c basename.c stripslash.c
57
58 # exclude
59 libtar_a_SOURCES += exclude.h exclude.c
60
61 # exitfail
62 libtar_a_SOURCES += exitfail.h exitfail.c
63
64 # fnmatch
65 BUILT_SOURCES += $(FNMATCH_H)
66 EXTRA_DIST += fnmatch_.h fnmatch_loop.c
67
68 # We need the following in order to create an <fnmatch.h> when the system
69 # doesn't have one that supports the required API.
70 all-local $(lib_OBJECTS): $(FNMATCH_H)
71 fnmatch.h: fnmatch_.h
72 cp $(srcdir)/fnmatch_.h $@-t
73 mv $@-t $@
74 MOSTLYCLEANFILES += fnmatch.h fnmatch.h-t
75
76 # full-write
77 libtar_a_SOURCES += full-write.h full-write.c
78
79 # getdate
80 libtar_a_SOURCES += getdate.h getdate.y
81 BUILT_SOURCES += getdate.c
82 MAINTAINERCLEANFILES += getdate.c
83 #
84 # Say $(srcdir), so GNU make does not report an ambiguity with the .y.c rule.
85 $(srcdir)/getdate.c: getdate.y
86 cd $(srcdir) && \
87 $(YACC) $(YFLAGS) getdate.y && \
88 mv -f y.tab.c getdate.c
89
90 # getline
91 libtar_a_SOURCES += getline.h
92 EXTRA_DIST += getndelim2.h getndelim2.c
93
94 # getopt
95 libtar_a_SOURCES += getopt.h getopt.c getopt1.c
96
97 # gettext
98 libtar_a_SOURCES += gettext.h
99
100 # hash
101 libtar_a_SOURCES += hash.h hash.c
102
103 # human
104 libtar_a_SOURCES += human.h human.c
105
106 # lchown
107 libtar_a_SOURCES += lchown.h
108
109 # modechange
110 libtar_a_SOURCES += modechange.h modechange.c
111
112 # pathmax
113 libtar_a_SOURCES += pathmax.h
114
115 # quote
116 libtar_a_SOURCES += quote.h quote.c
117
118 # quotearg
119 libtar_a_SOURCES += quotearg.h quotearg.c
120
121 # safe-read
122 libtar_a_SOURCES += safe-read.h safe-read.c
123
124 # safe-write
125 libtar_a_SOURCES += safe-write.h safe-write.c
126
127 # save-cwd
128 libtar_a_SOURCES += save-cwd.h save-cwd.c
129
130 # savedir
131 libtar_a_SOURCES += savedir.h savedir.c
132
133 # stdbool
134 BUILT_SOURCES += $(STDBOOL_H)
135 EXTRA_DIST += stdbool_.h
136
137 # We need the following in order to create an <stdbool.h> when the system
138 # doesn't have one that works.
139 all-local $(lib_OBJECTS): $(STDBOOL_H)
140 stdbool.h: stdbool_.h
141 sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool_.h > $@-t
142 mv $@-t $@
143 MOSTLYCLEANFILES += stdbool.h stdbool.h-t
144
145 # unlocked-io
146 libtar_a_SOURCES += unlocked-io.h
147
148 # xalloc
149 libtar_a_SOURCES += xalloc.h xmalloc.c xstrdup.c
150
151 # xgetcwd
152 libtar_a_SOURCES += xgetcwd.h xgetcwd.c
153
154 # xstrtol
155 libtar_a_SOURCES += xstrtol.h xstrtol.c xstrtoul.c
156
157 # xstrtoumax
158 libtar_a_SOURCES += xstrtoumax.c
This page took 0.045277 seconds and 5 git commands to generate.