commit af45936447630ef92cff37f213ecd571eb237ab2
parent ed7b1019fc6d9788c8b1a0aa4c421f743076d8f0
Author: Joris Vink <joris@coders.se>
Date: Thu, 29 Nov 2018 21:13:34 +0100
add releng-build-examples target for myself
Diffstat:
Makefile | 8 ++++++++
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
@@ -185,5 +185,13 @@ clean:
find . -type f -name \*.o -exec rm {} \;
rm -rf $(KORE) $(OBJDIR) kore.features
$(MAKE) -C kodev clean
+ $(MAKE) -C examples clean
+
+releng-build-examples:
+ rm -rf /tmp/kore_releng
+ $(MAKE) clean
+ $(MAKE) PYTHON=1 PGSQL=1 TASKS=1 PREFIX=/tmp/kore_releng
+ $(MAKE) install PREFIX=/tmp/kore_releng
+ $(MAKE) -C examples
.PHONY: all clean force