Remove Makefile testing code.

Revert disabled printd() to a semicolon.
This commit is contained in:
Sage Vaillancourt 2022-03-15 16:53:00 -04:00 committed by Sage Vaillancourt
parent 2cc97288bf
commit b390e272a7
2 changed files with 1 additions and 2 deletions

View File

@ -13,7 +13,6 @@ GCC_COM ?= gcc -g -O0 -Wall -o $(exe) -D STANDALONE -DSCRIPTDIR=\"$(SCRIPTDIR)\"
all: all:
$(GCC_COM) $(files) $(libs) && echo && ./tests.sh $(GCC_COM) $(files) $(libs) && echo && ./tests.sh
echo "$(file_libs)"
notest: notest:
$(GCC_COM) $(file_libs) $(GCC_COM) $(file_libs)

View File

@ -11,7 +11,7 @@
#ifdef DEBUG #ifdef DEBUG
#define printd(...) printf(__VA_ARGS__) #define printd(...) printf(__VA_ARGS__)
#else #else
#define printd(...) (0) #define printd(...) ;
#endif #endif
#endif #endif