From 0a15f7246a3d39919185042a37e281f480de2c18 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Sat, 29 May 2021 16:00:53 +0200 Subject: [PATCH] :wrench: Add utility targets [skip ci] --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Makefile b/Makefile index 90fcd1c1..1aef8588 100644 --- a/Makefile +++ b/Makefile @@ -101,6 +101,19 @@ gwion-fuzz: clean_core: @rm -f core.* *vgcore.* +clean-all: + ${MAKE} -s -C libcmdapp clean + ${MAKE} -s -C fmt clean + ${MAKE} -s -C ast clean + ${MAKE} -s -C ast/libprettyerr clean + ${MAKE} -s -C util clean + ${MAKE} -s -C util/libtermcolor clean + +update: clean-all + git pull + git submodule update --recursive --init + make + .PHONY: .afl clean: clean_core -- 2.43.0