diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-11-19 20:02:51 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-11-19 20:02:51 +0000 |
commit | 3df86407e3f21fafdccd826f8ada547d95d09a8c (patch) | |
tree | f77627de6a40b6c5bd222da621613d29e77233df /sys/arch | |
parent | 37e08c96503da49c70ddf79dffb559ba83689b4d (diff) |
Add netudp.c here too for consistency, even though this code ends up not being
referenced by the bootblocks.
Diffstat (limited to 'sys/arch')
-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 |