Annotation-System/hmmlib/makefile

19 lines
274 B
Makefile
Raw Normal View History

2017-02-27 21:42:14 +00:00
all: hmml.a example
hmml.a: hmmlib.o
ar rcs $@ $<
hmmlib.c: hmmlib.l
lex -o $@ $<
2017-02-27 21:42:14 +00:00
hmmlib.o: hmmlib.c
gcc -std=gnu99 -D_GNU_SOURCE -g -c $< -o $@
2017-02-27 21:42:14 +00:00
example: example.c hmml.a
gcc -std=gnu99 -g $^ -o $@
2018-03-14 23:01:50 +00:00
clean:
$(RM) hmml.a hmmlib.o hmmlib.c example
2018-03-14 23:01:50 +00:00
.PHONY: all clean