improve hmmlib makefile when lex missing even more

This commit is contained in:
Alex Baines 2018-08-09 20:18:02 +01:00
parent 82a49f57e9
commit 07db5d0397
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ hmml.a: hmmlib.o
ar rcs $@ $<
hmmlib.c: hmmlib.l
lex -t $< > $@
lex -o $@ $<
hmmlib.o: hmmlib.c
gcc -std=gnu99 -D_GNU_SOURCE -g -c $< -o $@