summaryrefslogtreecommitdiff
path: root/usr.bin/nerve/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-07-17 23:03:59 -0400
committerIan Moffett <ian@osmora.org>2025-07-17 23:03:59 -0400
commit429bc68e90cb522d89bdf59eccbaf9faf3021d51 (patch)
tree7ee16c7f157ffd79e6f7e8c61ca377c9a5def678 /usr.bin/nerve/Makefile
parentde7ab64e895c37cadc4d4032c24013d28edb248b (diff)
usr.bin: Add 'nerve' program to poke ctlfs
The 'nerve' program allows users to poke at a ctlfs entry and write their own data. Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/nerve/Makefile')
-rw-r--r--usr.bin/nerve/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.bin/nerve/Makefile b/usr.bin/nerve/Makefile
new file mode 100644
index 0000000..cc0fd91
--- /dev/null
+++ b/usr.bin/nerve/Makefile
@@ -0,0 +1,6 @@
+include user.mk
+
+CFILES = $(shell find . -name "*.c")
+
+$(ROOT)/base/usr/bin/nerve:
+ gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS)