summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorClay Smith <claysmith158@gmail.com>2023-02-05 13:50:51 -0600
committerClay Smith <claysmith158@gmail.com>2023-02-05 13:50:51 -0600
commita8003ca6d7c1a48ad30aa8205d352031b21e7996 (patch)
tree06904f2f4e0f98417f16226fce35c6e51550ffd4 /Makefile
parentf54d199eb6e20fb38248d73cf83926360b6a57d2 (diff)
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
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
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