mirror of
https://github.com/openbsd/src.git
synced 2024-12-22 16:42:56 -08:00
15 lines
298 B
Makefile
15 lines
298 B
Makefile
# $OpenBSD: Makefile,v 1.8 1997/10/20 00:25:38 deraadt Exp $
|
|
|
|
.if make(obj)
|
|
SUBDIR= special alpha amiga arc crunch hp300 i386 mac68k mvme68k \
|
|
pmax powerpc sparc
|
|
.elif !make(install)
|
|
SUBDIR= special
|
|
.endif
|
|
.if exists(${MACHINE})
|
|
SUBDIR+= ${MACHINE}
|
|
.endif
|
|
SUBDIR+= notes
|
|
|
|
.include <bsd.subdir.mk>
|