mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-23 23:00:19 +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
|