From 299380880ac7c8f735274b9c6da6c4841162fc15 Mon Sep 17 00:00:00 2001 From: Tyler Murphy Date: Thu, 13 Apr 2023 18:32:44 -0400 Subject: [PATCH] fix makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 651fbc3..86451a1 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,9 @@ APP = $(BIN)/app SRC = $(shell find src -name "*.c") OBJ = $(SRC:%.c=$(BIN)/%.o) -.PHONY: clean build +.PHONY: dirs run clean build install uninstall install-openrc uninstall-openrc + +EOF: clean build dirs: mkdir -p ./$(BIN)