From 5b269aa40562d22f467f8239b9135664e97e443b Mon Sep 17 00:00:00 2001 From: Emil Date: Wed, 2 Aug 2023 07:47:57 -0600 Subject: [PATCH] Day 1 Patch of the Makefile --- .gitignore | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index c2bf155..b4981f7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ build +obj **/*.out **/*.o +probotic diff --git a/Makefile b/Makefile index 608da0b..0b67f58 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ SRC.DIR := src OBJ.DIR := $(PREFIX)/obj # INC.DIR := include -OBJ := $(addprefix $(OBJ.DIR)/, fetch.c main.c) +OBJ := $(addprefix $(OBJ.DIR)/,fetch.o main.o) # HDR := VPATH := $(INC.DIR) $(SRC.DIR) $(OBJ.DIR)