From 6bde613fb9d41f92e8caa5113a63cd523dc18ccd Mon Sep 17 00:00:00 2001 From: Stefan Date: Mon, 10 Apr 2023 23:47:54 +0200 Subject: [PATCH] Added a GNU target --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Makefile b/Makefile index 03d7c77..55b5e60 100644 --- a/Makefile +++ b/Makefile @@ -106,6 +106,20 @@ cflags += $($(*)-cflags) $(CPPFLAGS) $(CFLAGS) tags TAGS t: FORCE scripts/tags +check: $(PROGRAMS) + example/simplest + example/hello + example/window + example/window-color + example/window-frame + example/window-resizable + example/draw + example/text + example/button + example/subview + example/window-event + example/path + clean: @for dir in $(MODULES); do ${MAKE} clean -C $$dir; exit_status=$$?; \ if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done