aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2021-07-28 22:34:51 -0700
committerBruce Hill <bruce@bruce-hill.com>2021-07-28 22:34:51 -0700
commit783f1271992af3bb6b2413339514e283ad819f9f (patch)
tree486f4c6b335ebf4e09175e7135d133d7ec077f16 /Makefile
parentfe755086652a751317b3cb76bed9b3e91a3fea82 (diff)
Improved memory allocation/error checking helper functions. Also
reworked stderr so that it prints to the console on exit.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d6ca58b..908989d 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ CWARN=-Wall -Wextra
CFLAGS += '-DBB_NAME="$(NAME)"'
OSFLAGS != case $$(uname -s) in *BSD|Darwin) echo '-D_BSD_SOURCE';; Linux) echo '-D_GNU_SOURCE';; *) echo '-D_DEFAULT_SOURCE';; esac
-CFILES=draw.c terminal.c
+CFILES=draw.c terminal.c utils.c
OBJFILES=$(CFILES:.c=.o)
all: $(NAME)