mirror of
https://github.com/opnsense/src.git
synced 2026-03-21 18:30:08 -04:00
12 lines
221 B
Makefile
12 lines
221 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 4/17/94
|
|
# $FreeBSD$
|
|
|
|
PROG= savecore
|
|
SRCS= savecore.c zopen.c
|
|
MAN= savecore.8
|
|
|
|
ZOPENPATH= ${.CURDIR}/../../usr.bin/compress
|
|
.PATH: ${ZOPENPATH}
|
|
CFLAGS+= -I${ZOPENPATH}
|
|
|
|
.include <bsd.prog.mk>
|