From b390e272a7bdcd9ba73743f37302860946435986 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Tue, 15 Mar 2022 16:53:00 -0400 Subject: [PATCH] Remove Makefile testing code. Revert disabled printd() to a semicolon. --- src/Makefile | 1 - src/object.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index 84ddcce..d0f4a73 100644 --- a/src/Makefile +++ b/src/Makefile @@ -13,7 +13,6 @@ GCC_COM ?= gcc -g -O0 -Wall -o $(exe) -D STANDALONE -DSCRIPTDIR=\"$(SCRIPTDIR)\" all: $(GCC_COM) $(files) $(libs) && echo && ./tests.sh - echo "$(file_libs)" notest: $(GCC_COM) $(file_libs) diff --git a/src/object.h b/src/object.h index ef04eba..3229ddd 100644 --- a/src/object.h +++ b/src/object.h @@ -11,7 +11,7 @@ #ifdef DEBUG #define printd(...) printf(__VA_ARGS__) #else -#define printd(...) (0) +#define printd(...) ; #endif #endif