Skip to content

Commit

Permalink
Merge pull request #13 from omeranson/makefile
Browse files Browse the repository at this point in the history
Correct lexx invocation in Makefile
  • Loading branch information
jgarzik authored Dec 16, 2024
2 parents befc86b + f5b5de6 commit 41e244c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ CLEANFILES = $(nodist_sql_SOURCES) sql.output
sql.tab.c sql.tab.h: sql.y Makefile
${BISON} -vd $<

sql.c sql.lex.h: sql.l Makefile
sql.c: sql.l Makefile
${LEX} -o $@ $<

sql.lex.h: sql.c ;

TESTS = test-ok.sh test-fail.sh test-tst.sh

0 comments on commit 41e244c

Please sign in to comment.