Makefile (fa07de5eeb36516701b3393f13acc1e1f702c634) | Makefile (f9fe0a0abb34d4d5ec9c65f487b66bdf44c15152) |
---|---|
1# $FreeBSD$ 2 3LIB= archive 4DPADD= ${LIBBZ2} ${LIBZ} 5LDADD= -lbz2 -lz 6 7# FreeBSD SHLIB_MAJOR value is managed as part of the FreeBSD system. 8# It has no real relation to the libarchive version number. 9SHLIB_MAJOR= 4 10 11CFLAGS+= -DPLATFORM_CONFIG_H=\"config_freebsd.h\" 12CFLAGS+= -I${.OBJDIR} 13 14WARNS?= 6 15 16# Headers to be installed in /usr/include 17INCS= archive.h archive_entry.h 18 | 1# $FreeBSD$ 2 3LIB= archive 4DPADD= ${LIBBZ2} ${LIBZ} 5LDADD= -lbz2 -lz 6 7# FreeBSD SHLIB_MAJOR value is managed as part of the FreeBSD system. 8# It has no real relation to the libarchive version number. 9SHLIB_MAJOR= 4 10 11CFLAGS+= -DPLATFORM_CONFIG_H=\"config_freebsd.h\" 12CFLAGS+= -I${.OBJDIR} 13 14WARNS?= 6 15 16# Headers to be installed in /usr/include 17INCS= archive.h archive_entry.h 18 |
19# For now, archive.h is the same as archive.h.in. 20archive.h: archive.h.in 21 cat ${.CURDIR}/archive.h.in > archive.h 22 23# archive.h needs to be cleaned 24CLEANFILES+= archive.h 25 | |
26# Sources to be compiled. | 19# Sources to be compiled. |
27SRCS= archive.h \ 28 archive_check_magic.c \ | 20SRCS= archive_check_magic.c \ |
29 archive_entry.c \ 30 archive_entry_copy_stat.c \ 31 archive_entry_stat.c \ 32 archive_entry_strmode.c \ 33 archive_entry_link_resolver.c \ 34 archive_read.c \ 35 archive_read_data_into_fd.c \ 36 archive_read_extract.c \ --- 202 unchanged lines hidden --- | 21 archive_entry.c \ 22 archive_entry_copy_stat.c \ 23 archive_entry_stat.c \ 24 archive_entry_strmode.c \ 25 archive_entry_link_resolver.c \ 26 archive_read.c \ 27 archive_read_data_into_fd.c \ 28 archive_read_extract.c \ --- 202 unchanged lines hidden --- |