From fc8ff5392be9b0da93aab7533cba0fbcd05dce76 Mon Sep 17 00:00:00 2001 From: stderr64 Date: Sun, 25 Jan 2026 19:20:42 +0200 Subject: First commit --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6ba65df --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CC=gcc + +rel: + $(CC) -O2 -mavx2 -Werror -Wall -pedantic ./dwmtimestatus.c -o ./dwmtimestatus -lX11 + +debug: + $(CC) -O2 -mavx2 -ggdb -Werror -Wall -pedantic ./dwmtimestatus.c -o ./dwmtimestatus -lX11 + +clean: + rm ./dwmtimestatus -- cgit v1.2.3-95-g76ab