Makefile revision 168388
1# $FreeBSD: head/lib/libarchive/Makefile 168388 2007-04-05 15:51:19Z cperciva $
2
3LIB=	archive
4DPADD=	${LIBBZ2} ${LIBZ}
5LDADD=	-lbz2 -lz
6
7# The libarchive version stamp.
8# Version is three numbers:
9#  Major: Bumped ONLY when API/ABI breakage happens (see SHLIB_MAJOR)
10#  Minor: Bumped when significant new features are added
11#  Revision: Bumped on any notable change
12VERSION= 2.0.25
13
14ARCHIVE_API_MAJOR!=	echo ${VERSION} | sed -e 's/[^0-9]/./g' -e 's/\..*//'
15ARCHIVE_API_MINOR!=	echo ${VERSION} | sed -e 's/[^0-9]/./g' -e 's/[0-9]*\.//' -e 's/\..*//'
16
17# FreeBSD SHLIB_MAJOR value is managed as part of the FreeBSD system.
18# It has no real relation to the version number above.
19SHLIB_MAJOR= 4
20
21CFLAGS+=	-DPACKAGE_NAME=\"lib${LIB}\"
22CFLAGS+=	-DPACKAGE_VERSION=\"${VERSION}\"
23CFLAGS+=	-I${.OBJDIR}
24
25WARNS?=	6
26
27# Headers to be installed in /usr/include
28INCS=	archive.h archive_entry.h
29
30# Build archive.h from archive.h.in by substituting version information.
31# Note: FreeBSD has inttypes.h, so enable that include in archive.h.in
32archive.h:	archive.h.in Makefile
33	cat ${.CURDIR}/archive.h.in |					\
34		sed 's/@VERSION@/${VERSION}/g' | 			\
35		sed 's/@SHLIB_MAJOR@/${SHLIB_MAJOR}/g' |		\
36		sed 's/@ARCHIVE_API_MAJOR@/${ARCHIVE_API_MAJOR}/g' |	\
37		sed 's/@ARCHIVE_API_MINOR@/${ARCHIVE_API_MINOR}/g' |	\
38		sed 's|@ARCHIVE_H_INCLUDE_INTTYPES_H@|#include <inttypes.h>  /* For int64_t */|g' |			\
39		cat > archive.h
40
41# archive.h needs to be cleaned
42CLEANFILES+=	archive.h
43
44# Sources to be compiled.
45SRCS=	archive.h					\
46	archive_check_magic.c				\
47	archive_entry.c					\
48	archive_read.c					\
49	archive_read_data_into_fd.c			\
50	archive_read_extract.c				\
51	archive_read_open_fd.c				\
52	archive_read_open_file.c			\
53	archive_read_open_filename.c			\
54	archive_read_open_memory.c			\
55	archive_read_support_compression_all.c		\
56	archive_read_support_compression_bzip2.c	\
57	archive_read_support_compression_compress.c	\
58	archive_read_support_compression_gzip.c		\
59	archive_read_support_compression_none.c		\
60	archive_read_support_format_all.c		\
61	archive_read_support_format_cpio.c		\
62	archive_read_support_format_empty.c		\
63	archive_read_support_format_iso9660.c		\
64	archive_read_support_format_tar.c		\
65	archive_read_support_format_zip.c		\
66	archive_string.c				\
67	archive_string_sprintf.c			\
68	archive_util.c					\
69	archive_virtual.c				\
70	archive_write.c					\
71	archive_write_disk.c				\
72	archive_write_disk_set_standard_lookup.c	\
73	archive_write_open_fd.c				\
74	archive_write_open_file.c			\
75	archive_write_open_filename.c			\
76	archive_write_open_memory.c			\
77	archive_write_set_compression_bzip2.c		\
78	archive_write_set_compression_gzip.c		\
79	archive_write_set_compression_none.c		\
80	archive_write_set_format.c			\
81	archive_write_set_format_by_name.c		\
82	archive_write_set_format_cpio.c			\
83	archive_write_set_format_pax.c			\
84	archive_write_set_format_shar.c			\
85	archive_write_set_format_ustar.c
86
87# Man pages to be installed.
88MAN=	archive_entry.3					\
89	archive_read.3					\
90	archive_util.3					\
91	archive_write.3					\
92	archive_write_disk.3				\
93	libarchive.3					\
94	libarchive-formats.5				\
95	tar.5
96
97# Symlink the man pages under each function name.
98MLINKS+=	archive_entry.3 archive_entry_acl_add_entry.3
99MLINKS+=	archive_entry.3 archive_entry_acl_add_entry_w.3
100MLINKS+=	archive_entry.3 archive_entry_acl_clear.3
101MLINKS+=	archive_entry.3 archive_entry_acl_count.3
102MLINKS+=	archive_entry.3 archive_entry_acl_next.3
103MLINKS+=	archive_entry.3 archive_entry_acl_next_w.3
104MLINKS+=	archive_entry.3 archive_entry_acl_reset.3
105MLINKS+=	archive_entry.3 archive_entry_acl_text_w.3
106MLINKS+=	archive_entry.3 archive_entry_clear.3
107MLINKS+=	archive_entry.3 archive_entry_clone.3
108MLINKS+=	archive_entry.3 archive_entry_copy_fflags_text_w.3
109MLINKS+=	archive_entry.3 archive_entry_copy_gname_w.3
110MLINKS+=	archive_entry.3 archive_entry_copy_hardlink_w.3
111MLINKS+=	archive_entry.3 archive_entry_copy_pathname_w.3
112MLINKS+=	archive_entry.3 archive_entry_copy_stat.3
113MLINKS+=	archive_entry.3 archive_entry_copy_symlink_w.3
114MLINKS+=	archive_entry.3 archive_entry_copy_uname_w.3
115MLINKS+=	archive_entry.3 archive_entry_fflags.3
116MLINKS+=	archive_entry.3 archive_entry_fflags_text.3
117MLINKS+=	archive_entry.3 archive_entry_free.3
118MLINKS+=	archive_entry.3 archive_entry_gid.3
119MLINKS+=	archive_entry.3 archive_entry_gname.3
120MLINKS+=	archive_entry.3 archive_entry_gname_w.3
121MLINKS+=	archive_entry.3 archive_entry_hardlink.3
122MLINKS+=	archive_entry.3 archive_entry_ino.3
123MLINKS+=	archive_entry.3 archive_entry_mode.3
124MLINKS+=	archive_entry.3 archive_entry_mtime.3
125MLINKS+=	archive_entry.3 archive_entry_mtime_nsec.3
126MLINKS+=	archive_entry.3 archive_entry_new.3
127MLINKS+=	archive_entry.3 archive_entry_pathname.3
128MLINKS+=	archive_entry.3 archive_entry_pathname_w.3
129MLINKS+=	archive_entry.3 archive_entry_rdev.3
130MLINKS+=	archive_entry.3 archive_entry_rdevmajor.3
131MLINKS+=	archive_entry.3 archive_entry_rdevminor.3
132MLINKS+=	archive_entry.3 archive_entry_set_fflags.3
133MLINKS+=	archive_entry.3 archive_entry_set_gid.3
134MLINKS+=	archive_entry.3 archive_entry_set_gname.3
135MLINKS+=	archive_entry.3 archive_entry_set_hardlink.3
136MLINKS+=	archive_entry.3 archive_entry_set_link.3
137MLINKS+=	archive_entry.3 archive_entry_set_mode.3
138MLINKS+=	archive_entry.3 archive_entry_set_pathname.3
139MLINKS+=	archive_entry.3 archive_entry_set_rdevmajor.3
140MLINKS+=	archive_entry.3 archive_entry_set_rdevminor.3
141MLINKS+=	archive_entry.3 archive_entry_set_size.3
142MLINKS+=	archive_entry.3 archive_entry_set_symlink.3
143MLINKS+=	archive_entry.3 archive_entry_set_uid.3
144MLINKS+=	archive_entry.3 archive_entry_set_uname.3
145MLINKS+=	archive_entry.3 archive_entry_size.3
146MLINKS+=	archive_entry.3 archive_entry_stat.3
147MLINKS+=	archive_entry.3 archive_entry_symlink.3
148MLINKS+=	archive_entry.3 archive_entry_uid.3
149MLINKS+=	archive_entry.3 archive_entry_uname.3
150MLINKS+=	archive_entry.3 archive_entry_uname_w.3
151MLINKS+=	archive_read.3 archive_read_data.3
152MLINKS+=	archive_read.3 archive_read_data_block.3
153MLINKS+=	archive_read.3 archive_read_data_into_buffer.3
154MLINKS+=	archive_read.3 archive_read_data_into_fd.3
155MLINKS+=	archive_read.3 archive_read_data_skip.3
156MLINKS+=	archive_read.3 archive_read_extract.3
157MLINKS+=	archive_read.3 archive_read_extract_set_progress_callback.3
158MLINKS+=	archive_read.3 archive_read_extract_set_skip_file.3
159MLINKS+=	archive_read.3 archive_read_finish.3
160MLINKS+=	archive_read.3 archive_read_new.3
161MLINKS+=	archive_read.3 archive_read_next_header.3
162MLINKS+=	archive_read.3 archive_read_open.3
163MLINKS+=	archive_read.3 archive_read_open2.3
164MLINKS+=	archive_read.3 archive_read_open_FILE.3
165MLINKS+=	archive_read.3 archive_read_open_fd.3
166MLINKS+=	archive_read.3 archive_read_open_file.3
167MLINKS+=	archive_read.3 archive_read_open_filename.3
168MLINKS+=	archive_read.3 archive_read_open_memory.3
169MLINKS+=	archive_read.3 archive_read_support_compression_all.3
170MLINKS+=	archive_read.3 archive_read_support_compression_bzip2.3
171MLINKS+=	archive_read.3 archive_read_support_compression_compress.3
172MLINKS+=	archive_read.3 archive_read_support_compression_gzip.3
173MLINKS+=	archive_read.3 archive_read_support_compression_none.3
174MLINKS+=	archive_read.3 archive_read_support_format_all.3
175MLINKS+=	archive_read.3 archive_read_support_format_cpio.3
176MLINKS+=	archive_read.3 archive_read_support_format_iso9660.3
177MLINKS+=	archive_read.3 archive_read_support_format_tar.3
178MLINKS+=	archive_read.3 archive_read_support_format_zip.3
179MLINKS+=	archive_util.3 archive_clear_error.3
180MLINKS+=	archive_util.3 archive_compression.3
181MLINKS+=	archive_util.3 archive_compression_name.3
182MLINKS+=	archive_util.3 archive_errno.3
183MLINKS+=	archive_util.3 archive_error_string.3
184MLINKS+=	archive_util.3 archive_format.3
185MLINKS+=	archive_util.3 archive_format_name.3
186MLINKS+=	archive_util.3 archive_set_error.3
187MLINKS+=	archive_write.3 archive_write_data.3
188MLINKS+=	archive_write.3 archive_write_finish.3
189MLINKS+=	archive_write.3 archive_write_finish_entry.3
190MLINKS+=	archive_write.3 archive_write_get_bytes_in_last_block.3
191MLINKS+=	archive_write.3 archive_write_get_bytes_per_block.3
192MLINKS+=	archive_write.3 archive_write_header.3
193MLINKS+=	archive_write.3 archive_write_new.3
194MLINKS+=	archive_write.3 archive_write_open.3
195MLINKS+=	archive_write.3 archive_write_open_FILE.3
196MLINKS+=	archive_write.3 archive_write_open_fd.3
197MLINKS+=	archive_write.3 archive_write_open_file.3
198MLINKS+=	archive_write.3 archive_write_open_filename.3
199MLINKS+=	archive_write.3 archive_write_open_memory.3
200MLINKS+=	archive_write.3 archive_write_set_bytes_in_last_block.3
201MLINKS+=	archive_write.3 archive_write_set_bytes_per_block.3
202MLINKS+=	archive_write.3 archive_write_set_callbacks.3
203MLINKS+=	archive_write.3 archive_write_set_compression_bzip2.3
204MLINKS+=	archive_write.3 archive_write_set_compression_gzip.3
205MLINKS+=	archive_write.3 archive_write_set_format_pax.3
206MLINKS+=	archive_write.3 archive_write_set_format_shar.3
207MLINKS+=	archive_write.3 archive_write_set_format_ustar.3
208MLINKS+=	archive_write_disk.3 archive_write_disk_new.3
209MLINKS+=	archive_write_disk.3 archive_write_disk_set_group_lookup.3
210MLINKS+=	archive_write_disk.3 archive_write_disk_set_options.3
211MLINKS+=	archive_write_disk.3 archive_write_disk_set_skip_file.3
212MLINKS+=	archive_write_disk.3 archive_write_disk_set_standard_lookup.3
213MLINKS+=	archive_write_disk.3 archive_write_disk_set_user_lookup.3
214MLINKS+=	libarchive.3 archive.3
215
216test:
217	cd ${.CURDIR}/test && make test
218
219.include <bsd.lib.mk>
220