diff options
author | Clay Smith <claysmith158@gmail.com> | 2023-01-30 22:08:33 -0600 |
---|---|---|
committer | Clay Smith <claysmith158@gmail.com> | 2023-01-30 22:08:33 -0600 |
commit | f2bea22f979015b439f0f9347f2fad8c7babc481 (patch) | |
tree | de9c9c811f9f8cff7dc2e5b6313e19789d68fa76 /Makefile | |
parent | 2548e88a53e9a4cebab8ca77eb696ae1e85aadb9 (diff) |
refactored by adding a seperate file and functions to reduce duplication
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |