Have Make process exit if lextest fails

This commit is contained in:
Marc G. Fournier 1997-05-16 01:09:39 +00:00
parent cc349d2c87
commit 718adf8bf7
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ lextest: lextest.c scan.l
$(CC) -c lex.yy.c
$(CC) -c lextest.c
$(CC) -o lextest lex.yy.o lextest.o
@echo "If this fails, flex is broken" | lextest || echo "You have a buggy version of flex. Read INSTALL and search for flex for a fix."
@echo "If this fails, flex is broken" | lextest || echo "You have a buggy version of flex. Read INSTALL and search for flex for a fix.";exit
clean:
rm -f lextest lex.yy.c lex.yy.o lextest.o