diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-11-27 19:54:57 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-11-27 19:54:57 +0000 |
commit | 1dad1624ba7e422be25efc3e4786b134b01353b0 (patch) | |
tree | 0a2572d465b5d92c9855630692b27b1bc0ba7733 /sys/arch/alpha/stand/netboot/Makefile | |
parent | 4a14488d7c63678946c8d94c72d01460307f1b49 (diff) |
Make compilable in our env. Involved disabling ELF support,
reordering includes (due to -Wstrict-prototypes) and other -Wall goo
Diffstat (limited to 'sys/arch/alpha/stand/netboot/Makefile')
-rw-r--r-- | sys/arch/alpha/stand/netboot/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/alpha/stand/netboot/Makefile b/sys/arch/alpha/stand/netboot/Makefile index f83b46d45ac..d05d684b225 100644 --- a/sys/arch/alpha/stand/netboot/Makefile +++ b/sys/arch/alpha/stand/netboot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 1996/10/30 22:40:51 niklas Exp $ +# $OpenBSD: Makefile,v 1.2 1996/11/27 19:54:54 niklas Exp $ # $NetBSD: Makefile,v 1.3 1996/10/18 06:02:24 thorpej Exp $ .PATH: ${.CURDIR}/.. ${.CURDIR}/../../../../lib/libsa @@ -11,7 +11,7 @@ BOOT_SRCS+= printf.c bzero.c rpcc.S BOOT_SRCS+= dev_net.c conf.c devopen.c BOOT_SRCS+= nfs.c rpc.c alloc.c ntohl.c htonl.c ntohs.c htons.c net.c bootp.c -BOOT_SRCS+= strlen.c bcopy.c dev.c bcmp.c strerror.c rarp.c read.c lseek.c +BOOT_SRCS+= strlen.c dev.c bcmp.c strerror.c rarp.c read.c lseek.c BOOT_SRCS+= in_cksum.c exit.c closeall.c arp.c strncpy.c globals.c open.c BOOT_SRCS+= close.c ether.c netif.c @@ -25,7 +25,7 @@ AFLAGS += -DASSEMBLER CPPFLAGS += -I${.CURDIR}/../../../../ \ -I${.CURDIR}/../../../../lib/libsa \ -I${.CURDIR}/../.. -DPRIMARY_BOOTBLOCK \ - -DALPHA_BOOT_ECOFF -DALPHA_BOOT_ELF + -DALPHA_BOOT_ECOFF # -DALPHA_BOOT_ELF CFLAGS = -Werror -mno-fp-regs -g CLEANFILES+= vers.c vers.o |