From 783f1271992af3bb6b2413339514e283ad819f9f Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 28 Jul 2021 22:34:51 -0700 Subject: Improved memory allocation/error checking helper functions. Also reworked stderr so that it prints to the console on exit. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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) -- cgit v1.2.3