blob: 0c258a8c93cdd8f243f17f2811effa259ae79e76 (
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
29
30
31
32
33
34
35
36
37
38
39
|
# $OpenBSD: Makefile,v 1.7 2013/11/02 15:51:15 deraadt Exp $
# $NetBSD: Makefile,v 1.1 1996/09/30 16:34:59 ws Exp $
MANSUBDIR=macppc
MAN=boot.8
MLINKS?= boot.8 boot.conf.5
.if ${MACHINE} == "macppc"
SUBDIR= ofwboot boot.mac mbr tbxidata
SAREL=
KERNREL=
KERN_AS=library
Z_AS=library
SA_ZLIB=smth
USE_LOADFILE=yes
.include "Makefile.inc"
.include "$S/lib/libz/Makefile.inc"
.include "$S/lib/libsa/Makefile.inc"
all: ${ZLIB} ${SALIB} _SUBDIRUSE
libdep:
@echo ${.OBJDIR}/${SALIB} ${ZLIB}
${PROG}:
clean:: _SUBDIRUSE
cleandir: _SUBDIRUSE
depend:: _SUBDIRUSE
.endif
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
.include <bsd.man.mk>
|