summaryrefslogtreecommitdiff
path: root/init/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'init/Makefile')
-rw-r--r--init/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/init/Makefile b/init/Makefile
index 53a64ea..fae06bf 100644
--- a/init/Makefile
+++ b/init/Makefile
@@ -1,11 +1,11 @@
CC = gcc
CFLAGS =
LDFLAGS = --static
-OUTPUT = init.elf
+OUTPUT = init
SRC = init.c
-build: init.o
+build:
$(CC) $(CFLAGS) $(SRC) $(LDFLAGS) -o $(OUTPUT)
.PHONY: copy clean
@@ -14,4 +14,4 @@ clean:
rm -df $(OUTPUT)
copy:
- objcopy -O binary $(OUTPUT) ../root/init
+ cp $(OUTPUT) ../root/init