mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-23 14:50:24 +00:00
16 lines
200 B
Makefile
16 lines
200 B
Makefile
|
|
TGT=gnostic-swift-sample
|
|
|
|
BINDIR=.build/debug
|
|
|
|
all:
|
|
swift build
|
|
|
|
install: all
|
|
cp $(BINDIR)/$(TGT) $(GOPATH)/bin/$(TGT)
|
|
|
|
clean :
|
|
rm -rf Packages
|
|
rm -rf .build
|
|
rm -f Package.pins Package.resolved
|