Deleted Added
sdiff udiff text old ( 40878 ) new ( 40891 )
full compact
1# $Id: Makefile,v 1.9 1998/11/04 00:32:08 msmith Exp $
2#
3# Originally from $NetBSD: Makefile,v 1.21 1997/10/26 22:08:38 lukem Exp $
4#
5# Notes:
6# - We don't use the libc strerror/sys_errlist because the string table is
7# quite large.
8#
9

--- 75 unchanged lines hidden (view full) ---

85 m4 -DNAME=__reml -DOP=rem -DS=true -DWORDSIZE=32 \
86 ${.ALLSRC} > ${.TARGET}
87.endif
88
89# network support from libc
90.PATH: ${.CURDIR}/../libc/net
91SRCS+= inet_ntoa.c inet_addr.c
92
93# _setjmp/_longjmp
94.PATH: ${.CURDIR}/../libc/${MACHINE_ARCH}/gen
95SRCS+= _setjmp.S
96# really only required for i386
97CFLAGS+=-I${.CURDIR}/../libc/${MACHINE_ARCH}
98.endif
99
100# decompression functionality from libz
101.PATH: ${.CURDIR}/../libz
102CFLAGS+=-DHAVE_MEMCPY
103SRCS+= adler32.c crc32.c infblock.c infcodes.c inffast.c inflate.c \
104 inftrees.c infutil.c zutil.c
105

--- 20 unchanged lines hidden ---