14 lines
308 B
Makefile
14 lines
308 B
Makefile
|
|
BINDIR=.build/debug
|
|
|
|
all:
|
|
swift build
|
|
|
|
install: all
|
|
cp $(BINDIR)/gnostic-swift-generator $(GOPATH)/bin/gnostic-swift-generator
|
|
cp $(BINDIR)/gnostic-swift-generator $(GOPATH)/bin/gnostic-swift-client
|
|
cp $(BINDIR)/gnostic-swift-generator $(GOPATH)/bin/gnostic-swift-server
|
|
|
|
clean:
|
|
rm -rf .build Packages
|