aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi92@disroot.org>2025-10-02 15:40:03 +0200
committerXavier Del Campo Romero <xavi92@disroot.org>2025-10-02 15:48:04 +0200
commitbba0b62f4e9e17927b9a2cda51dd5a4aa1b1f14e (patch)
tree80d58d082ec03dfea2ed1f4c119e3fb251902336 /Makefile
parent9be656dfed53783036c7ae1edae04060b451d6df (diff)
downloadlibweb-bba0b62f4e9e17927b9a2cda51dd5a4aa1b1f14e.tar.gz
examples: Add distclean target
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9069f27..6027ed4 100644
--- a/Makefile
+++ b/Makefile
@@ -49,6 +49,10 @@ clean:
rm -f $(OBJECTS) $(DEPS)
+cd examples && $(MAKE) clean
+distclean: clean
+ rm -f $(PROJECT_A) $(PROJECT_SO)
+ +cd examples && $(MAKE) distclean
+
FORCE:
examples: FORCE