xref: /netbsd-src/share/examples/asm/hello/Makefile.inst (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
1# $NetBSD: Makefile.inst,v 1.1 2011/11/12 01:18:41 jmmv Exp $
2
3.include <bsd.own.mk>
4
5.if exists(${MACHINE_ARCH}.s)
6PROG=		hello
7MAN=		# empty
8LDFLAGS=	-nostdlib
9SRCS=		${MACHINE_ARCH}.s
10.endif
11
12.include <bsd.prog.mk>
13