qbolt/Makefile

12 lines
196 B
Makefile

.PHONY: all clean
all: qbolt.a
clean:
if [ -f qbolt.a ] ; then rm qbolt.a ; fi
if [ -f qbolt ] ; then rm qbolt ; fi
qbolt.a: *.go
go build -ldflags='-s -w' -buildmode=c-archive -o qbolt.a