Day 1 Patch of the Makefile

This commit is contained in:
Emil 2023-08-02 07:47:57 -06:00
parent 750bcb00a1
commit 5b269aa405
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
build build
obj
**/*.out **/*.out
**/*.o **/*.o
probotic

View File

@ -13,7 +13,7 @@ SRC.DIR := src
OBJ.DIR := $(PREFIX)/obj OBJ.DIR := $(PREFIX)/obj
# INC.DIR := include # INC.DIR := include
OBJ := $(addprefix $(OBJ.DIR)/, fetch.c main.c) OBJ := $(addprefix $(OBJ.DIR)/,fetch.o main.o)
# HDR := # HDR :=
VPATH := $(INC.DIR) $(SRC.DIR) $(OBJ.DIR) VPATH := $(INC.DIR) $(SRC.DIR) $(OBJ.DIR)