summaryrefslogtreecommitdiffstats
path: root/lib/libz/Makefile
blob: dce0ab3614ef6a5d6bae8e097ab1c9203192119d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#
# $FreeBSD: head/lib/libz/Makefile 232263 2012-02-28 18:30:18Z dim $
#

LIB=		z
SHLIBDIR?=	/lib
SHLIB_MAJOR=	6
MAN=		zlib.3

#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
#CFLAGS=-g -DDEBUG
#CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
#           -Wstrict-prototypes -Wmissing-prototypes

CFLAGS+=	-DHAS_snprintf -DHAS_vsnprintf -I${.CURDIR}

WARNS?=		3

CLEANFILES+=	example.o example foo.gz minigzip.o minigzip

SRCS+=		adler32.c
SRCS+=		compress.c
SRCS+=		crc32.c
SRCS+=		deflate.c
SRCS+=		gzclose.c
SRCS+=		gzlib.c
SRCS+=		gzread.c
SRCS+=		gzwrite.c
SRCS+=		infback.c
SRCS+=		inffast.c
SRCS+=		inflate.c
SRCS+=		inftrees.c
SRCS+=		trees.c
SRCS+=		uncompr.c
SRCS+=		zopen.c
SRCS+=		zutil.c

#.if ${MACHINE_ARCH} == "i386" && ${MACHINE_CPU:M*i686*}
#.PATH:		${.CURDIR}/contrib/asm686
#SRCS+=		match.S
#CFLAGS+=	-DASMV -DNO_UNDERLINE
#ACFLAGS+=	-Wa,--noexecstack
#.endif

#.if ${MACHINE_ARCH} == "amd64"
#.PATH:		${.CURDIR}/contrib/gcc_gvmat64
#SRCS+=		gvmat64.S
#CFLAGS+=	-DASMV -DNO_UNDERLINE
#ACFLAGS+=	-Wa,--noexecstack
#.endif

VERSION_DEF=	${.CURDIR}/Versions.def
SYMBOL_MAPS=	${.CURDIR}/Symbol.map
CFLAGS+=	-DSYMBOL_VERSIONING

INCS=		zconf.h zlib.h

.PATH:		${.CURDIR}/test

minigzip:	all minigzip.o
	$(CC) -o minigzip minigzip.o -L. -lz

example:	all example.o
	$(CC) -o example example.o -L. -lz

test: example minigzip
	(export LD_LIBRARY_PATH=. ; ./example )
	(export LD_LIBRARY_PATH=. ; \
		echo hello world | ./minigzip | ./minigzip -d )

beforeinstall:
	${INSTALL} -C -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \
		${.CURDIR}/zlib.pc ${DESTDIR}${LIBDATADIR}/pkgconfig

.include <bsd.lib.mk>

## XXX: clang integrated-as doesn't grok .intel_syntax directives yet
#ACFLAGS.gvmat64.S=	${CLANG_NO_IAS}
#ACFLAGS+=		${ACFLAGS.${.IMPSRC:T}}
OpenPOWER on IntegriCloud