1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-28 16:43:09 +00:00

Make machine dependent asm code machine dependent. 8-)

This commit is contained in:
John Birrell 1998-01-25 09:52:32 +00:00
parent 3b306d567c
commit 44626f8fec
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32764

View File

@ -1,13 +1,18 @@
# @(#)Makefile 5.3 (Berkeley) 5/12/90
# $Id: Makefile,v 1.17 1997/12/21 19:15:12 wosch Exp $
# $Id: Makefile,v 1.18 1997/12/26 01:53:58 wosch Exp $
PROG= gzip
SRCS= gzip.c zip.c deflate.c trees.c bits.c unzip.c inflate.c util.c \
crypt.c lzw.c unlzw.c unlzh.c unpack.c getopt.c match.S
crypt.c lzw.c unlzw.c unlzh.c unpack.c getopt.c
MAN1= gzexe.1 gzip.1 zdiff.1 zforce.1 zmore.1 znew.1
CFLAGS+=-DASMV -DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1 -DDIRENT=1
CFLAGS+=-DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1 -DDIRENT=1
GREP_LIBZ?= YES
.if ${MACHINE_ARCH} == "i386"
SRCS+= match.S
CFLAGS+=-DASMV
.endif
MLINKS= gzip.1 gunzip.1 gzip.1 zcat.1 gzip.1 gzcat.1
MLINKS+= zdiff.1 zcmp.1