From 5e35dae177c92d0395c4dd9ed180ceef4587962a Mon Sep 17 00:00:00 2001 From: Ian Piumarta Date: Sun, 19 Jan 2025 11:03:33 +0900 Subject: [PATCH] turn off execution explcitly when testing parser --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6b3ed01..577725d 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ all : main cc $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(LDLIBS) -o $@ $< test : main - ./main -xvv test.txt + ./main -vv test.txt demo : main for i in demofiles/*.c; do echo $$i; ./main -x < $$i; done