diff options
| author | Onkel Mo <mo@onkelmo.com> | 2026-04-25 11:03:40 +0200 |
|---|---|---|
| committer | Onkel Mo <mo@onkelmo.com> | 2026-04-25 11:03:40 +0200 |
| commit | 7d6705abb1f1aabaf7e5fb9dd9f2da843ce1ad6a (patch) | |
| tree | 2ae530a66d33e829c2e339e85ea5a4aebd1bd79f /Makefile | |
chore: init
Initialises the project.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
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 |
