From a8003ca6d7c1a48ad30aa8205d352031b21e7996 Mon Sep 17 00:00:00 2001 From: Clay Smith Date: Sun, 5 Feb 2023 13:50:51 -0600 Subject: Now working with scanf properly on my end. Run the program without arguments to get devices connected, run with the number to run that device --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ad796c4..12106c3 100644 --- a/Makefile +++ b/Makefile @@ -4,5 +4,8 @@ ALL_FLAGS = -g main: main.c handle_devices.c ${CC} ${ALL_FLAGS} main.c handle_devices.c +student: student.c + ${CC} ${ALL_FLAGS} student.c -o test + clean: rm *\.o -- cgit v1.2.1