From 0c5776129d1702d393fd1ad9f71636031c3d15dc 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 6d53d06..028f057 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/"