From c82bd04954756bea66bfe80fae66d6ce66db4896 Mon Sep 17 00:00:00 2001 From: itycodes Date: Wed, 4 Feb 2026 04:23:39 +0100 Subject: [PATCH] Fixup a duplicate slash, make install target depend on all --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6d9f550..b69455e 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ CC ?= gcc CLIBS = -lwayland-client CFLAGS = $(CLIBS) -PREFIX ?= /usr/local/ +PREFIX ?= /usr/local SRC = main.c OUT = wl-globals @@ -14,7 +14,7 @@ all: $(OUT) clean: rm -f $(OUT) -install: +install: all mkdir -p "$(PREFIX)/bin/" cp "$(OUT)" "$(PREFIX)/bin/"