summaryrefslogtreecommitdiff
path: root/usr.sbin/install/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-06-10 01:31:24 -0400
committerIan Moffett <ian@osmora.org>2025-06-10 01:33:06 -0400
commit031dc9ef078da2fcf6e804447f5782f12f70725e (patch)
treedcc31fca4c9da93e9724e250cd4db6b1db808102 /usr.sbin/install/Makefile
parent806556468f0dfba40be1782f86e13f6231fc5ecd (diff)
usr.sbin: Add initial installer sources
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.sbin/install/Makefile')
-rw-r--r--usr.sbin/install/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.sbin/install/Makefile b/usr.sbin/install/Makefile
new file mode 100644
index 0000000..36c5969
--- /dev/null
+++ b/usr.sbin/install/Makefile
@@ -0,0 +1,6 @@
+include user.mk
+
+CFILES = $(shell find . -name "*.c")
+
+$(ROOT)/base/usr/sbin/install:
+ gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS)