Makefile revision 1.26
1#	$OpenBSD: Makefile,v 1.26 2004/08/06 22:34:49 deraadt Exp $
2
3.if	make(obj)
4SUBDIR= special alpha crunch hp300 hppa i386 mac68k macppc mvme68k \
5	mvme88k mvmeppc sparc sparc64 vax amd64 cats sgi
6.elif	!make(install)
7SUBDIR= special
8.endif
9.if	make(clean) || make(cleandir)
10SUBDIR+=crunch
11.endif
12.if exists(${MACHINE})
13SUBDIR+= ${MACHINE}
14.endif
15SUBDIR+= notes
16
17#all: crunch-tools _SUBDIRUSE
18
19crunch-tools:
20	(cd $(.CURDIR)/crunch; $(MAKE) obj; \
21	 $(MAKE) depend && ${MAKE} && ${SUDO} ${MAKE} DESTDIR= install)
22
23.include <bsd.subdir.mk>
24