summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorClay Smith <claysmith158@gmail.com>2023-02-07 01:13:52 -0600
committerClay Smith <claysmith158@gmail.com>2023-02-07 01:13:52 -0600
commit5a6ab9faf253d3a25c559ec13db081d956fe706e (patch)
tree0567d5d914612a84f69815b6b59982870093d766 /Makefile
parenta8003ca6d7c1a48ad30aa8205d352031b21e7996 (diff)
Done except fix scanf issue and add more controllers.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 12106c3..197df31 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CC = gcc
ALL_FLAGS = -g
main: main.c handle_devices.c
- ${CC} ${ALL_FLAGS} main.c handle_devices.c
+ ${CC} ${ALL_FLAGS} main.c handle_devices.c -o controller_prog
student: student.c
${CC} ${ALL_FLAGS} student.c -o test