diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..74c3f56 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +# Default target +all: + zig build + +# Clean target +clean: + rm -rdf ./bin + +# Phony targets +.PHONY: all clean