diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-29 20:58:18 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-29 20:58:18 -0400 |
commit | 1b156399b42332a82b1b083c69777a20b011091f (patch) | |
tree | b77bdea61d563602ea2d03fab3d118e9c6843f00 /usr.sbin/inject/Makefile | |
parent | f27caba0386adabde524bdb3f4cccd231cf936c8 (diff) |
usr.sbin: Add 'inject' program for loading KRQs
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.sbin/inject/Makefile')
-rw-r--r-- | usr.sbin/inject/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.sbin/inject/Makefile b/usr.sbin/inject/Makefile new file mode 100644 index 0000000..7175ae9 --- /dev/null +++ b/usr.sbin/inject/Makefile @@ -0,0 +1,6 @@ +include user.mk + +CFILES = $(shell find . -name "*.c") + +$(ROOT)/base/usr/sbin/inject: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) |