about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile25
1 files changed, 25 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..7099164
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,25 @@
+CFLAGS ?= -Wall -Werror -static -g -Og
+.DEFAULT_GOAL := all
+
+build/catskill: build src/catskill.csk
+	echo "No catskill compiler exists yet. Building empty file."
+	touch ./build/catskill
+
+build/catboot: build boot/catboot.c
+	$(CC) $(CFLAGS) -o ./build/catboot ./boot/catboot.c
+
+build:
+	mkdir -p ./build
+
+.PHONY: all run run-boot clean
+
+all: build/catskill build/catboot
+
+run: build/catskill
+	echo "Not implemented yet."
+
+run-boot: build/catboot
+	./build/catboot
+
+clean:
+	rm -rf build/*