From: Diego 'Flameeyes' Pettenò Date: Mon, 1 Dec 2008 22:19:25 +0000 (-0800) Subject: Don't use recursive make for verify target X-Git-Tag: l-~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c3f6c61942fe5196c3fc74d0d761b11239003f66;p=platform%2Fupstream%2Fcrda.git Don't use recursive make for verify target This makes the build more parallel since regdbdump.o build and link can happen in parallel with the keys generation and the build of the rest of the units. Signed-off-by: Diego E. 'Flameeyes' Pettenò Signed-off-by: Luis R. Rodriguez --- diff --git a/Makefile b/Makefile index 7a8a246..e21edd2 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,7 @@ PUBKEY_DIR=pubkeys CFLAGS += -Wall -g -all: crda intersect - $(Q)$(MAKE) --no-print-directory -f Makefile verify +all: crda intersect verify ifeq ($(USE_OPENSSL),1) CFLAGS += -DUSE_OPENSSL `pkg-config --cflags openssl`