From 6354a278883161704c7f8650a3bdde77f163c6ad Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 16 Jan 2009 10:10:29 +0000 Subject: Makefile: added 'make static' target to build apk.static --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit v1.2.3