From 0b1b5717fdb08a4f8de918654f1585cb34bf4615 Mon Sep 17 00:00:00 2001 From: "Serge A. Zaitsev" Date: Thu, 29 Nov 2018 20:26:31 +0100 Subject: [PATCH] move config.mk below all target to allow custom non-default build targets --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f89701f..594e697 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ # You can put your build options here --include config.mk - all: libjsmn.a +-include config.mk + libjsmn.a: jsmn.o $(AR) rc $@ $^