blob: 5d0bec6278b0d075e921802c3601f26a028a7e1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $OpenBSD: Makefile,v 1.2 1999/06/06 15:16:40 niklas Exp $
#
# You don't want to understand this makefile.
#
LIB = arla
NOPIC =
NOPROFILE=
MAN =
CFLAGS += -DHAVE_CONFIG_H -I${.CURDIR}/../src/include -I. \
-I${.CURDIR}/../src/lib/roken -I${.CURDIR}/../src/util \
-I${.CURDIR}/../src -I${.CURDIR}/../libroken
# XXX Until an egtcs bug gets fixed
.if (${MACHINE_ARCH} == "alpha")
CFLAGS += -O0
.endif
.include "Makefile.lwp.inc"
.include "Makefile.rx.inc"
.include "Makefile.rxdef.inc"
.include "Makefile.rxkad.inc"
.include "Makefile.ko.inc"
.include <bsd.lib.mk>
|