From 29feb957034e9c812c23a18433eda761a8a0b998 Mon Sep 17 00:00:00 2001 From: Gene Stark Date: Sun, 16 Jan 2022 15:50:23 -0500 Subject: [PATCH] Fix _test/_tests issue in Makefile that I thought I fixed before. --- hw0/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw0/Makefile b/hw0/Makefile index 024f012..edd8547 100644 --- a/hw0/Makefile +++ b/hw0/Makefile @@ -12,7 +12,7 @@ TEST_SRC := $(shell find $(TSTD) -type f -name *.c) INC := -I $(INCD) EXEC := hi -TEST_EXEC := $(EXEC)_test +TEST_EXEC := $(EXEC)_tests CFLAGS := -Wall -Werror DFLAGS := -g -DDEBUG