diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-10 01:31:24 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-10 01:33:06 -0400 |
commit | 031dc9ef078da2fcf6e804447f5782f12f70725e (patch) | |
tree | dcc31fca4c9da93e9724e250cd4db6b1db808102 /usr.sbin/install/Makefile | |
parent | 806556468f0dfba40be1782f86e13f6231fc5ecd (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/Makefile | 6 |
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) |