diff options
author | andrew <andrew@FreeBSD.org> | 2015-04-11 10:21:26 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2015-04-11 10:21:26 +0000 |
commit | e4b0c2816613a8de66e3492af440116ef33a61be (patch) | |
tree | 891e646e532ad473c282a03f65c3fbd575c86b46 /sys/boot/efi | |
parent | 968170bb2a072298f307900ebc29aaaeef355eaa (diff) | |
download | FreeBSD-src-e4b0c2816613a8de66e3492af440116ef33a61be.zip FreeBSD-src-e4b0c2816613a8de66e3492af440116ef33a61be.tar.gz |
Move reloc.c to the top level Makefile as it has become generic.
Diffstat (limited to 'sys/boot/efi')
-rw-r--r-- | sys/boot/efi/loader/Makefile | 1 | ||||
-rw-r--r-- | sys/boot/efi/loader/arch/amd64/Makefile.inc | 3 | ||||
-rw-r--r-- | sys/boot/efi/loader/arch/arm/Makefile.inc | 3 | ||||
-rw-r--r-- | sys/boot/efi/loader/arch/i386/Makefile.inc | 3 |
4 files changed, 4 insertions, 6 deletions
diff --git a/sys/boot/efi/loader/Makefile b/sys/boot/efi/loader/Makefile index 3f536c8..da92c43 100644 --- a/sys/boot/efi/loader/Makefile +++ b/sys/boot/efi/loader/Makefile @@ -20,6 +20,7 @@ SRCS= autoload.c \ copy.c \ devicename.c \ main.c \ + reloc.c \ smbios.c \ vers.c diff --git a/sys/boot/efi/loader/arch/amd64/Makefile.inc b/sys/boot/efi/loader/arch/amd64/Makefile.inc index 3f2b68e..006606d 100644 --- a/sys/boot/efi/loader/arch/amd64/Makefile.inc +++ b/sys/boot/efi/loader/arch/amd64/Makefile.inc @@ -3,8 +3,7 @@ SRCS+= amd64_tramp.S \ start.S \ framebuffer.c \ - elf64_freebsd.c \ - reloc.c + elf64_freebsd.c .PATH: ${.CURDIR}/../../i386/libi386 SRCS+= nullconsole.c \ diff --git a/sys/boot/efi/loader/arch/arm/Makefile.inc b/sys/boot/efi/loader/arch/arm/Makefile.inc index 853c957..4a3d543 100644 --- a/sys/boot/efi/loader/arch/arm/Makefile.inc +++ b/sys/boot/efi/loader/arch/arm/Makefile.inc @@ -1,5 +1,4 @@ # $FreeBSD$ SRCS+= exec.c \ - start.S \ - reloc.c + start.S diff --git a/sys/boot/efi/loader/arch/i386/Makefile.inc b/sys/boot/efi/loader/arch/i386/Makefile.inc index b339f56..2fce488 100644 --- a/sys/boot/efi/loader/arch/i386/Makefile.inc +++ b/sys/boot/efi/loader/arch/i386/Makefile.inc @@ -3,8 +3,7 @@ SRCS+= start.S \ efimd.c \ elf32_freebsd.c \ - exec.c \ - reloc.c + exec.c .PATH: ${.CURDIR}/../../i386/libi386 SRCS+= nullconsole.c \ |