From 0ec4553d525787749d441835601013505744264c Mon Sep 17 00:00:00 2001 From: Kljunas2 Date: Mon, 16 May 2022 13:16:10 +0200 Subject: [PATCH] fix recompiling --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3ec3158..ed6dfe7 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ BINARY = activate-linux CFLAGS = $(shell pkg-config --cflags --libs gtk+-3.0 gtk-layer-shell-0) activate-linux: - mkdir bin + mkdir -p bin $(CC) src/activate_linux.c -o bin/$(BINARY) $(CFLAGS) .PHONY: clean