mirror of https://github.com/ceph/go-ceph
14 lines
174 B
Makefile
14 lines
174 B
Makefile
|
BINARIES := issue-109
|
||
|
|
||
|
build: $(BINARIES)
|
||
|
clean:
|
||
|
$(RM) $(BINARIES)
|
||
|
|
||
|
.PHONY: tests
|
||
|
tests: issue-109
|
||
|
valgrind ./issue-109
|
||
|
|
||
|
issue-109: issue-109.go
|
||
|
go build -v issue-109.go
|
||
|
|