diff options
author | 2014-11-19 20:02:46 +0000 | |
---|---|---|
committer | 2014-11-19 20:02:46 +0000 | |
commit | 4cc308ad19efc9afda3ef8b383bb324e8f6d8826 (patch) | |
tree | 1fae3bec902f31c5dda8f9ad2dbf0a70107fceb1 | |
parent | Move {recv,send}udp() out of net.c into their own file; to be used shortly. (diff) | |
download | wireguard-openbsd-4cc308ad19efc9afda3ef8b383bb324e8f6d8826.tar.xz wireguard-openbsd-4cc308ad19efc9afda3ef8b383bb324e8f6d8826.zip |
Add netudp.c here too for consistency, even though this code ends up not being
referenced by the bootblocks.
-rw-r--r-- | sys/arch/macppc/stand/boot.mac/Makefile | 5 | ||||
-rw-r--r-- | sys/arch/macppc/stand/ofwboot/Makefile | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sys/arch/macppc/stand/boot.mac/Makefile b/sys/arch/macppc/stand/boot.mac/Makefile index 78ce07a9c4d..fa7ecf6667b 100644 --- a/sys/arch/macppc/stand/boot.mac/Makefile +++ b/sys/arch/macppc/stand/boot.mac/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2014/07/13 21:11:40 deraadt Exp $ +# $OpenBSD: Makefile,v 1.12 2014/11/19 20:02:46 miod Exp $ # $NetBSD: Makefile,v 1.1 1996/09/30 16:35:05 ws Exp $ S= ${.CURDIR}/../../../.. @@ -8,7 +8,8 @@ RELOC= E00000 ENTRY= _entry NOMAN= PROG= boot.mac -SRCS= Locore.c main.c ofdev.c net.c netif_of.c alloc.c cache.c hfs.c +SRCS= Locore.c main.c ofdev.c net.c netif_of.c netudp.c +SRCS+= alloc.c cache.c hfs.c SRCS+= boot.c conf.c cmd.c vars.c ctime.c strtol.c INSTALL_STRIP= diff --git a/sys/arch/macppc/stand/ofwboot/Makefile b/sys/arch/macppc/stand/ofwboot/Makefile index 42f2f70808a..67dbbc78a35 100644 --- a/sys/arch/macppc/stand/ofwboot/Makefile +++ b/sys/arch/macppc/stand/ofwboot/Makefile @@ -1,11 +1,12 @@ -# $OpenBSD: Makefile,v 1.12 2014/07/13 21:13:30 jasper Exp $ +# $OpenBSD: Makefile,v 1.13 2014/11/19 20:02:50 miod Exp $ # $NetBSD: Makefile,v 1.2 1997/04/17 07:46:24 thorpej Exp $ S= ${.CURDIR}/../../../.. R=../ PROG= ofwboot -SRCS= Locore.c main.c ofdev.c net.c netif_of.c alloc.c cache.c hfs.c +SRCS= Locore.c main.c ofdev.c net.c netif_of.c netudp.c +SRCS+= alloc.c cache.c hfs.c SRCS+= boot.c conf.c cmd.c vars.c ctime.c strtol.c .PATH: ${S}/arch/macppc/stand SRCS+= ofwmagic.S |