diff options
author | Johnny Richard <johnny@johnnyrichard.com> | 2021-04-13 02:53:13 +0200 |
---|---|---|
committer | Johnny Richard <johnny@johnnyrichard.com> | 2021-10-28 02:22:57 +0200 |
commit | d8336885a4c053544fe3491335da0f76afffdfb9 (patch) | |
tree | b3cd866a257406281144075c0af2407b9de2978c /Makefile | |
parent | 9a285cc3bdb8d5870fea5f07235a3e44786a0317 (diff) |
Move controller update to a new update function
Signed-off-by: Johnny Richard <johnny@johnnyrichard.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,7 +3,8 @@ SOURCE_DIR ?= ./src BUILD_DIR ?= ./build CFLAGS := -Wall -OBJS := $(BUILD_DIR)/main.o +OBJS := $(BUILD_DIR)/main.o \ + $(BUILD_DIR)/controller.o ifeq ($(OS),Windows_NT) CC := gcc |