From f2bea22f979015b439f0f9347f2fad8c7babc481 Mon Sep 17 00:00:00 2001 From: Clay Smith Date: Mon, 30 Jan 2023 22:08:33 -0600 Subject: refactored by adding a seperate file and functions to reduce duplication --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index aa6c8ee..ad796c4 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ CC = gcc ALL_FLAGS = -g -main: main.c - ${CC} ${ALL_FLAGS} main.c +main: main.c handle_devices.c + ${CC} ${ALL_FLAGS} main.c handle_devices.c clean: rm *\.o -- cgit v1.2.1