summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTyler Murphy <tylerm@tylerm.dev>2023-04-13 18:32:44 -0400
committerTyler Murphy <tylerm@tylerm.dev>2023-04-13 18:32:44 -0400
commit299380880ac7c8f735274b9c6da6c4841162fc15 (patch)
tree15a917e9dff94329dbf0b4a7b03176f59367fa7a /Makefile
parentmore posix support stuff (diff)
downloadwrapper-299380880ac7c8f735274b9c6da6c4841162fc15.tar.gz
wrapper-299380880ac7c8f735274b9c6da6c4841162fc15.tar.bz2
wrapper-299380880ac7c8f735274b9c6da6c4841162fc15.zip
fix makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
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)