From 69396f78614a2a69403ddd82409ea63182190b01 Mon Sep 17 00:00:00 2001 From: Lewis Van Winkle Date: Fri, 2 Oct 2020 17:28:35 -0500 Subject: [PATCH] renamed test to smoke --- Makefile | 8 ++++---- test.c => smoke.c | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename test.c => smoke.c (100%) diff --git a/Makefile b/Makefile index 13c35a3..1c81d4d 100644 --- a/Makefile +++ b/Makefile @@ -4,14 +4,14 @@ LFLAGS = -lm .PHONY = all clean -all: test test_pr bench example example2 example3 +all: smoke smoke_pr bench example example2 example3 -test: test.c tinyexpr.c +smoke: smoke.c tinyexpr.c $(CC) $(CCFLAGS) -o $@ $^ $(LFLAGS) ./$@ -test_pr: test.c tinyexpr.c +smoke_pr: smoke.c tinyexpr.c $(CC) $(CCFLAGS) -DTE_POW_FROM_RIGHT -DTE_NAT_LOG -o $@ $^ $(LFLAGS) ./$@ @@ -31,4 +31,4 @@ example3: example3.o tinyexpr.o $(CC) -c $(CCFLAGS) $< -o $@ clean: - rm -f *.o *.exe example example2 example3 bench test_pr test + rm -f *.o *.exe example example2 example3 bench smoke_pr smoke diff --git a/test.c b/smoke.c similarity index 100% rename from test.c rename to smoke.c