From 7d6705abb1f1aabaf7e5fb9dd9f2da843ce1ad6a Mon Sep 17 00:00:00 2001 From: Onkel Mo Date: Sat, 25 Apr 2026 11:03:40 +0200 Subject: chore: init Initialises the project. --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6bbeea8 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: wok + +wok: wok.o + clang wok.o -o wok + +wok.o: wok.c + clang -c wok.c -o wok.o + +clean: + rm -rf *.o -- cgit v1.2.3