diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-18 08:53:40 +0000 |
commit | d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch) | |
tree | ece253b876159b39c620e62b6c9b1174642e070e /sys/arch/sun3/stand/netboot/Makefile |
initial import of NetBSD tree
Diffstat (limited to 'sys/arch/sun3/stand/netboot/Makefile')
-rw-r--r-- | sys/arch/sun3/stand/netboot/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/arch/sun3/stand/netboot/Makefile b/sys/arch/sun3/stand/netboot/Makefile new file mode 100644 index 00000000000..0d62c7c4a5a --- /dev/null +++ b/sys/arch/sun3/stand/netboot/Makefile @@ -0,0 +1,15 @@ +# $NetBSD: Makefile,v 1.3 1995/09/23 03:42:47 gwr Exp $ + +SA_PROG= netboot +SRCS= boot.c conf.c version.c dev_net.c + +DEFS= -DSUN_BOOTPARAMS + +all: ${SA_PROG}.bin + +.include <bsd.prog.mk> + +install: ${SA_PROG}.bin + install ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ + ${SA_PROG}.bin ${DESTDIR}${MDEC_DIR}/${SA_PROG} + |