1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Fixed .PATH statement so that minigzip.c can be found when

${.OBJDIR} != ${.CURDIR}.
This commit is contained in:
Bruce Evans 1997-12-13 15:57:55 +00:00
parent 80987b7a3b
commit 30723f90ca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=31702

View File

@ -1,8 +1,8 @@
# $Id$
# $Id: Makefile,v 1.1.1.1 1997/12/13 09:57:48 msmith Exp $
PROG= minigzip
LDADD+= -lz
DPADD+= ${LIBZ}
.PATH: ../../lib/libz
.PATH: ${.CURDIR}/../../lib/libz
.include <bsd.prog.mk>