xref: /netbsd-src/share/examples/asm/hello/Makefile.inst (revision 413d532bcc3f62d122e56d92e13ac64825a40baf)
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