blob: 8e2b7a4be789d2040086fa1cd1aea4998e71cdc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $OpenBSD: Makefile,v 1.1 2001/09/21 23:12:00 deraadt Exp $
PROG= grep
SRCS= grep.c
CFLAGS+= -Wall -pedantic -g
LINKS+= ${BINDIR}/grep ${BINDIR}/egrep \
${BINDIR}/grep ${BINDIR}/fgrep
MLINKS= grep.1 egrep.1 grep.1 fgrep.1
.include <bsd.prog.mk>
|