summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b7bb063..68ff9c1 100644
--- a/Makefile
+++ b/Makefile
@@ -41,10 +41,13 @@ DOCDIR=/usr/share/doc/apk
SUBDIRS=src
-.PHONY: compile install clean all
+.PHONY: compile install clean all static
all: compile
+static:
+ $(MAKE) $(MFLAGS) -C src apk.static
+
compile install clean::
@for i in $(SUBDIRS); do $(MAKE) $(MFLAGS) -C $$i $(MAKECMDGOALS); done