From e525426c1bd9824dcd0063a0ae565a2eec0feeee Mon Sep 17 00:00:00 2001 From: Zhongheng Liu Date: Mon, 13 Oct 2025 13:29:55 +0200 Subject: [PATCH] cleanup makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 3abf4d2..c68e562 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ install: - cd ./scripts && $(MAKE) install && cd .. - cd ./dwl && $(MAKE) install && cd .. + $(MAKE) -C ./scripts install + $(MAKE) -C ./dwl install cd ./somebar && meson setup build --reconfigure && ninja -C build && ninja -C build install && cd .. - cd ./someblocks && $(MAKE) install && cd .. + $(MAKE) -C ./someblocks install cd ./wmenu && meson setup build --reconfigure && ninja -C build && ninja -C build install && cd ..