From e18cf6e588188c0aea90e0cc9e98af6edc800513 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Mon, 31 Jul 2023 12:36:00 +1200 Subject: [PATCH] Split clean target up into clean and clean-all in Makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fd4a5a5..72d9b21 100644 --- a/Makefile +++ b/Makefile @@ -52,6 +52,7 @@ clean: rm -f csto libcallisto.so ${OBJS} ${LIBS} rm -fr include rm -fr doc/*.html doc/modules +clean-all: clean ${MAKE} -s -Clua-5.4 clean ${MAKE} -s -Cexternal/json clean ${MAKE} -s -Cexternal/socket clean @@ -69,4 +70,4 @@ install: cp -fR include/callisto "${DESTDIR}${PREFIX}"/include cp -f libcallisto.so "${DESTDIR}${PREFIX}"/lib -.PHONY: all clean doc install +.PHONY: all clean clean-all doc install