From 26b64ca106a514279d09c9ade4ceeac4b2ff35e8 Mon Sep 17 00:00:00 2001 From: Daniel Santana Date: Tue, 5 Mar 2019 22:54:16 -0300 Subject: [PATCH] Add proot.static target to GNUmakefile (#168) --- src/GNUmakefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/GNUmakefile b/src/GNUmakefile index c4bbabcf..35cf14e4 100644 --- a/src/GNUmakefile +++ b/src/GNUmakefile @@ -168,6 +168,9 @@ OBJIFY = $($(quiet)GEN) \ proot: $(OBJECTS) $(LINK) +proot.static: $(OBJECTS) + $(LINK) -static + care: $(OBJECTS) $(CARE_OBJECTS) $(LINK) $(CARE_LDFLAGS)