summaryrefslogtreecommitdiffstats
path: root/sys/boot/sparc64/boot1
diff options
context:
space:
mode:
authorrobert <robert@FreeBSD.org>2002-03-05 16:39:36 +0000
committerrobert <robert@FreeBSD.org>2002-03-05 16:39:36 +0000
commit3114b0f152db884a577f1f269c49a5047fa8e0c6 (patch)
treee43267178146847b9a5549100201f8e53597cfee /sys/boot/sparc64/boot1
parente1e067d4d99974cc74c2108cbfba2f6c9b008687 (diff)
downloadFreeBSD-src-3114b0f152db884a577f1f269c49a5047fa8e0c6.zip
FreeBSD-src-3114b0f152db884a577f1f269c49a5047fa8e0c6.tar.gz
Change every occurrence of "bootblock" into "boot1" after
the repo-move from "src/sys/boot/sparc64/bootblock".
Diffstat (limited to 'sys/boot/sparc64/boot1')
-rw-r--r--sys/boot/sparc64/boot1/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/boot/sparc64/boot1/Makefile b/sys/boot/sparc64/boot1/Makefile
index 8f6bf7d..f152c74 100644
--- a/sys/boot/sparc64/boot1/Makefile
+++ b/sys/boot/sparc64/boot1/Makefile
@@ -5,15 +5,15 @@ BOOTBLOCKBASE= 0x4000
CFLAGS= -W -Wall -I../../ -I../../common/ -Os \
-DBOOTBLOCKBASE=${BOOTBLOCKBASE} \
-ffreestanding -mno-app-regs -mcmodel=medlow
-OBJ= bootblock.o
+OBJ= boot1.o
-all: bootblock
+all: boot1
-bootblock.o: bootblock.c
+boot1.o: boot1.c
${CC} ${CFLAGS} -c -o ${.TARGET} ${.ALLSRC}
-bootblock: ${OBJ}
- ${LD} -N -Ttext ${BOOTBLOCKBASE} -e main -o bootblock ${OBJ}
- /usr/local/bin/elftoaout bootblock
+boot1: ${OBJ}
+ ${LD} -N -Ttext ${BOOTBLOCKBASE} -e main -o boot1 ${OBJ}
+ /usr/local/bin/elftoaout boot1
clean:
- rm -f *.o bootblock
+ rm -f *.o boot1
OpenPOWER on IntegriCloud