diff options
author | Clay Smith <claysmith158@gmail.com> | 2023-02-05 13:50:51 -0600 |
---|---|---|
committer | Clay Smith <claysmith158@gmail.com> | 2023-02-05 13:50:51 -0600 |
commit | a8003ca6d7c1a48ad30aa8205d352031b21e7996 (patch) | |
tree | 06904f2f4e0f98417f16226fce35c6e51550ffd4 /Makefile | |
parent | f54d199eb6e20fb38248d73cf83926360b6a57d2 (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-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |