aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/Makefile
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-04-06 19:46:41 -0400
committerIan Moffett <ian@osmora.org>2024-04-06 19:48:10 -0400
commit8370d0a3eb373c37386de32ccd3a8a38ddeb8b02 (patch)
tree2f390a0f8206c8dca80362dd49b01ef3ecec1fc2 /usr.sbin/Makefile
parenteccaaf54d8e5ab90ed0cf9dd3be8204e35115692 (diff)
build: Statically link libc
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.sbin/Makefile')
-rw-r--r--usr.sbin/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile
index c75ebd0..30e7248 100644
--- a/usr.sbin/Makefile
+++ b/usr.sbin/Makefile
@@ -1,7 +1,8 @@
CC =
LD =
-LDSO =
+LIBC =
+USRDIR =
.PHONY: all
all:
- cd init/; make LDSO=$(LDSO) CC=$(CC) LD=$(LD)
+ cd init/; make CC=$(CC) USRDIR=$(USRDIR) LIBC=$(LIBC)