From 4bc92be30d3f5e9cbcf44c007344cdafdf1215d3 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Sat, 16 Nov 2019 09:45:35 +0100 Subject: [PATCH] make: composite sync target --- Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 94b8720b2..b5b65a7dc 100644 --- a/Makefile +++ b/Makefile @@ -43,9 +43,6 @@ list: @echo ${PLUGIN_DIR} -- $$(${MAKE} -C ${PLUGIN_DIR} -V PLUGIN_COMMENT) .endfor -list-fix: - @MAKE=${MAKE} Scripts/update-list.sh - # shared targets that are sane to run from the root directory TARGETS= clean lint style style-fix style-python sweep test @@ -95,4 +92,9 @@ mfc: license: @${.CURDIR}/Scripts/license . > ${.CURDIR}/LICENSE -.PHONY: license +readme.md: + @MAKE=${MAKE} Scripts/update-list.sh + +sync: readme.md license + +.PHONY: license readme.md sync