svn commit: r264079 - projects/uefi/sys/boot/amd64/efi

Ed Maste emaste at FreeBSD.org
Thu Apr 3 16:24:49 UTC 2014


Author: emaste
Date: Thu Apr  3 16:24:49 2014
New Revision: 264079
URL: http://svnweb.freebsd.org/changeset/base/264079

Log:
  Put each source file on a separate line
  
  This is equivalent to r264078 in HEAD, for sys/boot/i386/efi/Makefile.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  projects/uefi/sys/boot/amd64/efi/Makefile

Modified: projects/uefi/sys/boot/amd64/efi/Makefile
==============================================================================
--- projects/uefi/sys/boot/amd64/efi/Makefile	Thu Apr  3 16:21:37 2014	(r264078)
+++ projects/uefi/sys/boot/amd64/efi/Makefile	Thu Apr  3 16:24:49 2014	(r264079)
@@ -9,9 +9,18 @@ PROG=		loader.sym
 INTERNALPROG=
 
 # architecture-specific loader code
-SRCS=	autoload.c bootinfo.c conf.c copy.c devicename.c elf64_freebsd.c \
-	framebuffer.c main.c reloc.c vers.c
-SRCS+=	amd64_tramp.S start.S
+SRCS=	autoload.c \
+	bootinfo.c \
+	conf.c \
+	copy.c \
+	devicename.c \
+	elf64_freebsd.c \
+	framebuffer.c \
+	main.c \
+	reloc.c \
+	vers.c
+SRCS+=	amd64_tramp.S \
+	start.S
 
 CFLAGS+=	-fPIC
 CFLAGS+=	-I.


More information about the svn-src-projects mailing list