Add Makefile
2 files changed, 22 insertions(+), 0 deletions(-) A .gitignore A Makefile
A .gitignore => .gitignore +10 -0
@@ 0,0 1,10 @@ +btinfo +!cmd/btinfo/ +btl +!cmd/btl/ +btqd +!cmd/btqd/ +btrc +!cmd/btrc/ +bts +!cmd/bts/
A Makefile => Makefile +12 -0
@@ 0,0 1,12 @@ +.POSIX: +.SUFFIXES: + +all: btinfo + +btinfo: + hare build -o $@ cmd/btinfo/ + +check: + hare test + +.PHONY: btinfo check