aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cparser/GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/cparser/GNUmakefile b/cparser/GNUmakefile
index a2646c7b..ce326463 100644
--- a/cparser/GNUmakefile
+++ b/cparser/GNUmakefile
@@ -164,11 +164,11 @@ concrete: $(DATABASE).raw deLexer
# We declare a type name "t", which the de-lexer uses as a type name.
@ f=0 ; \
while read -r line ; do \
- filename=`printf "tests/generated/%03d.c" $$f` ; \
+ filename=`printf "tests/generated/parser_%03d.c" $$f` ; \
rm -f $$filename ; \
echo "typedef int t;" >> $$filename ; \
echo "$$line" \
- | $(CUT) --fields="1" --delimiter=" " --complement \
+ | $(CUT) -f 2- -d " " \
| ./deLexer \
>> $$filename ; \
f=$$((f+1)) ; \