blob: f2a84e6e8768945f2de0fb94d8cc959aaacd9f62 (
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
28
|
# $OpenBSD: Makefile,v 1.7 1997/10/15 13:59:58 mickey Exp $
S= ${.CURDIR}/../../../..
I386= ${.CURDIR}/../..
all: machine-links assym.h
machine-links:
@rm -f machine i386
@ln -fs ${.CURDIR}/../.. i386
@ln -fs ${.CURDIR}/../../include machine
depend:: machine-links assym.h
assym.h: $S/kern/genassym.sh ${.CURDIR}/genassym.cf
sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} \
${PARAM} < ${.CURDIR}/genassym.cf > assym.h.tmp && \
mv -f assym.h.tmp assym.h
cleandir: clean
clean:
@rm -f isa.h apm.h assym.h
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
.include "../Makefile.inc"
CFLAGS+=${SACFLAGS}
|