xref: /dragonfly/lib/libarchive/Makefile (revision 9b5a9965)
1# $FreeBSD: src/lib/libarchive/Makefile,v 1.50 2006/09/05 05:59:45 kientzle Exp $
2# $DragonFly: src/lib/libarchive/Makefile,v 1.14 2007/07/13 06:59:34 dillon Exp $
3
4LIB=	archive
5
6CONTRIBDIR=	${.CURDIR}/../../contrib/libarchive-2/libarchive
7.PATH: ${CONTRIBDIR}
8
9VERSION!=	cat ${CONTRIBDIR}/../version
10ARCHIVE_API_MAJOR!=	echo ${VERSION} | sed -e 's/[^0-9]/./g' -e 's/\..*//'
11ARCHIVE_API_MINOR!=	echo ${VERSION} | sed -e 's/[^0-9]/./g' -e 's/[0-9]*\.//' -e 's/\..*//'
12ARCHIVE_API_REV!=	echo ${VERSION} | sed -e 's/[^0-9]/./g' -e 's/.*\.//'
13# Can't use /usr/bin/printf to format the version stamp here, because
14# that's not available during installworld.  Fortunately, awk is.
15ARCHIVE_VERSION_STAMP!= echo ${ARCHIVE_API_MAJOR} ${ARCHIVE_API_MINOR} ${ARCHIVE_API_REV} | awk '{printf("%d%03d%03d",$$1,$$2,$$3)}'
16
17SHLIB_MAJOR=	5
18CFLAGS+=	-DPLATFORM_CONFIG_H=\"config.h\"
19CFLAGS+=	-DPACKAGE_STRING=\"libarchive\ ${VERSION}\"
20CFLAGS+=	-DPACKAGE_VERSION=\"${VERSION}\"
21CFLAGS+=	-DVERSION=\"${VERSION}\"
22CFLAGS+=	-I${.OBJDIR} -I${.CURDIR} -I${CONTRIBDIR} -I-
23WARNS?=	6
24
25INCS=	archive.h archive_entry.h
26
27# Note: archive.h does need to be listed here, since it's built
28SRCS=	archive.h					\
29	archive_check_magic.c				\
30	archive_entry.c					\
31	archive_entry_copy_stat.c			\
32	archive_entry_stat.c				\
33	archive_read.c					\
34	archive_read_data_into_fd.c			\
35	archive_read_extract.c				\
36	archive_read_open_fd.c				\
37	archive_read_open_file.c			\
38	archive_read_open_filename.c			\
39	archive_read_open_memory.c			\
40	archive_read_support_compression_all.c		\
41	archive_read_support_compression_bzip2.c	\
42	archive_read_support_compression_compress.c	\
43	archive_read_support_compression_gzip.c		\
44	archive_read_support_compression_none.c		\
45	archive_read_support_compression_program.c	\
46	archive_read_support_format_all.c		\
47	archive_read_support_format_ar.c		\
48	archive_read_support_format_cpio.c		\
49	archive_read_support_format_empty.c		\
50	archive_read_support_format_iso9660.c		\
51	archive_read_support_format_tar.c		\
52	archive_read_support_format_zip.c		\
53	archive_string.c				\
54	archive_string_sprintf.c			\
55	archive_util.c					\
56	archive_virtual.c				\
57	archive_write.c					\
58	archive_write_disk.c				\
59	archive_write_disk_set_standard_lookup.c	\
60	archive_write_open_fd.c				\
61	archive_write_open_file.c			\
62	archive_write_open_filename.c			\
63	archive_write_open_memory.c			\
64	archive_write_set_compression_bzip2.c		\
65	archive_write_set_compression_gzip.c		\
66	archive_write_set_compression_none.c		\
67	archive_write_set_compression_program.c		\
68	archive_write_set_format.c			\
69	archive_write_set_format_ar.c			\
70	archive_write_set_format_by_name.c		\
71	archive_write_set_format_cpio.c			\
72	archive_write_set_format_cpio_newc.c		\
73	archive_write_set_format_pax.c			\
74	archive_write_set_format_shar.c			\
75	archive_write_set_format_ustar.c		\
76	filter_fork.c
77
78MAN=	archive_entry.3					\
79	archive_read.3					\
80	archive_util.3					\
81	archive_write.3					\
82	archive_write_disk.3				\
83	libarchive.3					\
84	libarchive-formats.5				\
85	libarchive_internals.3				\
86	tar.5
87
88MLINKS+=	archive_entry.3 archive_entry_acl_add_entry.3
89MLINKS+=	archive_entry.3 archive_entry_acl_add_entry_w.3
90MLINKS+=	archive_entry.3 archive_entry_acl_clear.3
91MLINKS+=	archive_entry.3 archive_entry_acl_count.3
92MLINKS+=	archive_entry.3 archive_entry_acl_next.3
93MLINKS+=	archive_entry.3 archive_entry_acl_next_w.3
94MLINKS+=	archive_entry.3 archive_entry_acl_reset.3
95MLINKS+=	archive_entry.3 archive_entry_acl_text_w.3
96MLINKS+=	archive_entry.3 archive_entry_atime.3
97MLINKS+=	archive_entry.3 archive_entry_atime_nsec.3
98MLINKS+=	archive_entry.3 archive_entry_clear.3
99MLINKS+=	archive_entry.3 archive_entry_clone.3
100MLINKS+=	archive_entry.3 archive_entry_copy_fflags_text_w.3
101MLINKS+=	archive_entry.3 archive_entry_copy_gname_w.3
102MLINKS+=	archive_entry.3 archive_entry_copy_hardlink.3
103MLINKS+=	archive_entry.3 archive_entry_copy_hardlink_w.3
104MLINKS+=	archive_entry.3 archive_entry_copy_pathname_w.3
105MLINKS+=	archive_entry.3 archive_entry_copy_stat.3
106MLINKS+=	archive_entry.3 archive_entry_copy_symlink.3
107MLINKS+=	archive_entry.3 archive_entry_copy_symlink_w.3
108MLINKS+=	archive_entry.3 archive_entry_copy_uname_w.3
109MLINKS+=	archive_entry.3 archive_entry_dev.3
110MLINKS+=	archive_entry.3 archive_entry_devmajor.3
111MLINKS+=	archive_entry.3 archive_entry_devminor.3
112MLINKS+=	archive_entry.3 archive_entry_filetype.3
113MLINKS+=	archive_entry.3 archive_entry_fflags.3
114MLINKS+=	archive_entry.3 archive_entry_fflags_text.3
115MLINKS+=	archive_entry.3 archive_entry_free.3
116MLINKS+=	archive_entry.3 archive_entry_gid.3
117MLINKS+=	archive_entry.3 archive_entry_gname.3
118MLINKS+=	archive_entry.3 archive_entry_hardlink.3
119MLINKS+=	archive_entry.3 archive_entry_ino.3
120MLINKS+=	archive_entry.3 archive_entry_mode.3
121MLINKS+=	archive_entry.3 archive_entry_mtime.3
122MLINKS+=	archive_entry.3 archive_entry_mtime_nsec.3
123MLINKS+=	archive_entry.3 archive_entry_new.3
124MLINKS+=	archive_entry.3 archive_entry_nlink.3
125MLINKS+=	archive_entry.3 archive_entry_pathname.3
126MLINKS+=	archive_entry.3 archive_entry_pathname_w.3
127MLINKS+=	archive_entry.3 archive_entry_rdev.3
128MLINKS+=	archive_entry.3 archive_entry_rdevmajor.3
129MLINKS+=	archive_entry.3 archive_entry_rdevminor.3
130MLINKS+=	archive_entry.3 archive_entry_set_atime.3
131MLINKS+=	archive_entry.3 archive_entry_set_ctime.3
132MLINKS+=	archive_entry.3 archive_entry_set_dev.3
133MLINKS+=	archive_entry.3 archive_entry_set_devmajor.3
134MLINKS+=	archive_entry.3 archive_entry_set_devminor.3
135MLINKS+=	archive_entry.3 archive_entry_set_filetype.3
136MLINKS+=	archive_entry.3 archive_entry_set_fflags.3
137MLINKS+=	archive_entry.3 archive_entry_set_gid.3
138MLINKS+=	archive_entry.3 archive_entry_set_gname.3
139MLINKS+=	archive_entry.3 archive_entry_set_hardlink.3
140MLINKS+=	archive_entry.3 archive_entry_set_link.3
141MLINKS+=	archive_entry.3 archive_entry_set_mode.3
142MLINKS+=	archive_entry.3 archive_entry_set_mtime.3
143MLINKS+=	archive_entry.3 archive_entry_set_pathname.3
144MLINKS+=	archive_entry.3 archive_entry_set_rdevmajor.3
145MLINKS+=	archive_entry.3 archive_entry_set_rdevminor.3
146MLINKS+=	archive_entry.3 archive_entry_set_size.3
147MLINKS+=	archive_entry.3 archive_entry_set_symlink.3
148MLINKS+=	archive_entry.3 archive_entry_set_uid.3
149MLINKS+=	archive_entry.3 archive_entry_set_uname.3
150MLINKS+=	archive_entry.3 archive_entry_size.3
151MLINKS+=	archive_entry.3 archive_entry_stat.3
152MLINKS+=	archive_entry.3 archive_entry_symlink.3
153MLINKS+=	archive_entry.3 archive_entry_uid.3
154MLINKS+=	archive_entry.3 archive_entry_uname.3
155MLINKS+=	archive_read.3 archive_read_close.3
156MLINKS+=	archive_read.3 archive_read_data.3
157MLINKS+=	archive_read.3 archive_read_data_block.3
158MLINKS+=	archive_read.3 archive_read_data_into_buffer.3
159MLINKS+=	archive_read.3 archive_read_data_into_fd.3
160MLINKS+=	archive_read.3 archive_read_data_skip.3
161MLINKS+=	archive_read.3 archive_read_extract.3
162MLINKS+=	archive_read.3 archive_read_extract_set_progress_callback.3
163MLINKS+=	archive_read.3 archive_read_finish.3
164MLINKS+=	archive_read.3 archive_read_new.3
165MLINKS+=	archive_read.3 archive_read_next_header.3
166MLINKS+=	archive_read.3 archive_read_open.3
167MLINKS+=	archive_read.3 archive_read_open2.3
168MLINKS+=	archive_read.3 archive_read_open_FILE.3
169MLINKS+=	archive_read.3 archive_read_open_fd.3
170MLINKS+=	archive_read.3 archive_read_open_filename.3
171MLINKS+=	archive_read.3 archive_read_open_memory.3
172MLINKS+=	archive_read.3 archive_read_support_compression_all.3
173MLINKS+=	archive_read.3 archive_read_support_compression_bzip2.3
174MLINKS+=	archive_read.3 archive_read_support_compression_compress.3
175MLINKS+=	archive_read.3 archive_read_support_compression_gzip.3
176MLINKS+=	archive_read.3 archive_read_support_compression_none.3
177MLINKS+=	archive_read.3 archive_read_support_compression_program.3
178MLINKS+=	archive_read.3 archive_read_support_format_all.3
179MLINKS+=	archive_read.3 archive_read_support_format_cpio.3
180MLINKS+=	archive_read.3 archive_read_support_format_empty.3
181MLINKS+=	archive_read.3 archive_read_support_format_iso9660.3
182MLINKS+=	archive_read.3 archive_read_support_format_tar.3
183MLINKS+=	archive_read.3 archive_read_support_format_zip.3
184MLINKS+=	archive_util.3 archive_clear_error.3
185MLINKS+=	archive_util.3 archive_compression.3
186MLINKS+=	archive_util.3 archive_compression_name.3
187MLINKS+=	archive_util.3 archive_errno.3
188MLINKS+=	archive_util.3 archive_error_string.3
189MLINKS+=	archive_util.3 archive_format.3
190MLINKS+=	archive_util.3 archive_format_name.3
191MLINKS+=	archive_util.3 archive_set_error.3
192MLINKS+=	archive_write.3 archive_write_close.3
193MLINKS+=	archive_write.3 archive_write_data.3
194MLINKS+=	archive_write.3 archive_write_finish.3
195MLINKS+=	archive_write.3 archive_write_finish_entry.3
196MLINKS+=	archive_write.3 archive_write_get_bytes_per_block.3
197MLINKS+=	archive_write.3 archive_write_header.3
198MLINKS+=	archive_write.3 archive_write_new.3
199MLINKS+=	archive_write.3 archive_write_open.3
200MLINKS+=	archive_write.3 archive_write_open_FILE.3
201MLINKS+=	archive_write.3 archive_write_open_fd.3
202MLINKS+=	archive_write.3 archive_write_open_filename.3
203MLINKS+=	archive_write.3 archive_write_open_memory.3
204MLINKS+=	archive_write.3 archive_write_set_bytes_in_last_block.3
205MLINKS+=	archive_write.3 archive_write_set_bytes_per_block.3
206MLINKS+=	archive_write.3 archive_write_set_compression_bzip2.3
207MLINKS+=	archive_write.3 archive_write_set_compression_gzip.3
208MLINKS+=	archive_write.3 archive_write_set_compression_none.3
209MLINKS+=	archive_write.3 archive_write_set_compression_program.3
210MLINKS+=	archive_write.3 archive_write_set_format_cpio.3
211MLINKS+=	archive_write.3 archive_write_set_format_pax.3
212MLINKS+=	archive_write.3 archive_write_set_format_pax_restricted.3
213MLINKS+=	archive_write.3 archive_write_set_format_shar.3
214MLINKS+=	archive_write.3 archive_write_set_format_shar_binary.3
215MLINKS+=	archive_write.3 archive_write_set_format_ustar.3
216MLINKS+=	archive_write_disk.3 archive_write_disk_close.3
217MLINKS+=	archive_write_disk.3 archive_write_disk_data.3
218MLINKS+=	archive_write_disk.3 archive_write_disk_finish.3
219MLINKS+=	archive_write_disk.3 archive_write_disk_finish_entry.3
220MLINKS+=	archive_write_disk.3 archive_write_disk_header.3
221MLINKS+=	archive_write_disk.3 archive_write_disk_new.3
222MLINKS+=	archive_write_disk.3 archive_write_disk_set_group_lookup.3
223MLINKS+=	archive_write_disk.3 archive_write_disk_set_options.3
224MLINKS+=	archive_write_disk.3 archive_write_disk_set_skip_file.3
225MLINKS+=	archive_write_disk.3 archive_write_disk_set_standard_lookup.3
226MLINKS+=	archive_write_disk.3 archive_write_disk_set_user_lookup.3
227MLINKS+=	libarchive.3 archive.3
228
229# Build archive.h from archive.h.in
230archive.h:	archive.h.in Makefile
231	cat ${CONTRIBDIR}/archive.h.in |				\
232		sed 's/@ARCHIVE_VERSION@/${VERSION}/g' |		\
233		sed 's/@SHLIB_MAJOR@/${SHLIB_MAJOR}/g' |		\
234		sed 's/@ARCHIVE_API_MAJOR@/${ARCHIVE_API_MAJOR}/g' |	\
235		sed 's/@ARCHIVE_API_MINOR@/${ARCHIVE_API_MINOR}/g' |	\
236		sed 's/@ARCHIVE_VERSION_STAMP@/${ARCHIVE_VERSION_STAMP}/g' | \
237		sed 's|@ARCHIVE_H_INCLUDE_INTTYPES_H@|#include <inttypes.h>  /* For int64_t */|g' |			\
238		cat > archive.h
239
240# archive.h needs to be cleaned
241CLEANFILES+=	archive.h
242
243.include <bsd.lib.mk>
244