blob: fefaf2ee57b1b5b7939507f7a5b1d25995be2fda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.2 2006/05/08 20:34:36 deraadt Exp $
SRCS= prebind.c sod.c debug.c objarray.c
.if (${MACHINE} == "mips64")
NOPROG=
.else
PROG= prebind
.endif
MAN= prebind.8
BINDIR= /usr/sbin
CFLAGS += -Wall -ggdb
CFLAGS += -I${.CURDIR}/..
BINDIR= /usr/sbin
.include <bsd.prog.mk>
|