summaryrefslogtreecommitdiff
path: root/init/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'init/Makefile')
-rw-r--r--init/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/init/Makefile b/init/Makefile
new file mode 100644
index 0000000..53a64ea
--- /dev/null
+++ b/init/Makefile
@@ -0,0 +1,17 @@
+CC = gcc
+CFLAGS =
+LDFLAGS = --static
+OUTPUT = init.elf
+
+SRC = init.c
+
+build: init.o
+ $(CC) $(CFLAGS) $(SRC) $(LDFLAGS) -o $(OUTPUT)
+
+.PHONY: copy clean
+
+clean:
+ rm -df $(OUTPUT)
+
+copy:
+ objcopy -O binary $(OUTPUT) ../root/init