summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorCarson Fleming <cflems@cflems.net>2026-08-27 00:25:38 -0400
committerCarson Fleming <cflems@cflems.net>2026-08-27 00:25:53 -0400
commitfe466f1d1e460d25d92db30a38cef8bf12e5adab (patch)
treeb648d0992e14cc1505dce1cea8775e66efb077d7 /makefile
downloadforkit-fe466f1d1e460d25d92db30a38cef8bf12e5adab.tar.gz
yup it's 25 lines of code love to see it
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..b4994db
--- /dev/null
+++ b/makefile
@@ -0,0 +1,8 @@
+all:
+ mkdir -p build
+ cc forkit.c -o build/forkit
+install:
+ cp build/forkit /usr/local/bin
+ chmod 0755 /usr/local/bin/forkit
+clean:
+ rm -rf build