fix makefile

This commit is contained in:
Freya Murphy 2023-04-13 18:31:29 -04:00
parent d425cc445b
commit f79a2c6a9d

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
EOF: clean build
dirs: dirs:
mkdir -p ./$(BIN) mkdir -p ./$(BIN)