From 8fe5a3fbcf39a72084aa44d1eb6f43df9f28707c Mon Sep 17 00:00:00 2001 From: Mel Date: Fri, 28 Feb 2025 18:08:37 +0100 Subject: Add Makefile and Nix build environment Signed-off-by: Mel --- Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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/* -- cgit 1.4.1