renamed test to smoke

This commit is contained in:
Lewis Van Winkle
2020-10-02 17:28:35 -05:00
parent a8f9bd99c2
commit 69396f7861
2 changed files with 4 additions and 4 deletions

View File

@@ -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

View File