fix makefile

This commit is contained in:
Freya Murphy 2023-04-13 18:32:44 -04:00
parent 910c64f0a6
commit 299380880a

View file

@ -13,7 +13,9 @@ APP = $(BIN)/app
SRC = $(shell find src -name "*.c") SRC = $(shell find src -name "*.c")
OBJ = $(SRC:%.c=$(BIN)/%.o) OBJ = $(SRC:%.c=$(BIN)/%.o)
.PHONY: clean build .PHONY: dirs run clean build install uninstall install-openrc uninstall-openrc
EOF: clean build
dirs: dirs:
mkdir -p ./$(BIN) mkdir -p ./$(BIN)