aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRiley Beckett <rbeckettvt@gmail.com>2025-10-19 00:26:59 -0400
committerRiley Beckett <rbeckettvt@gmail.com>2025-10-19 00:26:59 -0400
commit56c5a1da4de4a7511882b2a9d4bae608aca1e61b (patch)
treee041ad1554d1f3c66f06e199ee9a93ff74d91f86 /Makefile
parentbe014d7b8df14596530ef8f9e7d7a8afae281c5c (diff)
change allow-free-result to exact-match
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0b1ba9b..9f8c0f2 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ WLC=$(patsubst %.xml,$(OBJDIR)/%.c, $(WLPROT))
WLH=$(patsubst %.xml,$(OBJDIR)/%.h, $(WLPROT))
SRC=$(WLC) $(wildcard *.c) $(wildcard glad/*.c)
OBJ=$(patsubst %.c,$(OBJDIR)/%.o, $(notdir $(SRC)))
-HDEPS=state.h wayland.h
+HDEPS=state.h wayland.h config.h
.SILENT: $(OBJ) $(WLC) $(WLH) $(BIN) $(OBJDIR) compile_flags
@@ -58,6 +58,6 @@ uninstall:
rm -rf $(PREFIX)/usr/bin/$(BIN)
run: all
- ./$(BIN)
+ ./swenu-run.sh
.PHONY: all clean run compile_flags install uninstall