perkeep/lib/go/Makefile

26 lines
788 B
Makefile
Raw Normal View History

2010-12-24 14:07:13 +00:00
all:
make -C ext/openpgp install
2010-12-24 14:07:13 +00:00
make -C blobref install
mkdir -p $(GOROOT)/src/pkg/camli
mkdir -p $(GOROOT)/src/pkg/camli
make -C schema install
make -C client install
2010-12-24 14:07:13 +00:00
make -C http install
make -C jsonsign install
mkdir -p $(GOROOT)/src/pkg/camli
mkdir -p $(GOROOT)/src/pkg/camli/{blobref,schema,client,http,jsonsign}
rsync -avPW --delete blobref/ $(GOROOT)/src/pkg/camli/blobref/
rsync -avPW --delete schema/ $(GOROOT)/src/pkg/camli/schema/
rsync -avPW --delete client/ $(GOROOT)/src/pkg/camli/client/
rsync -avPW --delete http/ $(GOROOT)/src/pkg/camli/http/
rsync -avPW --delete jsonsign/ $(GOROOT)/src/pkg/camli/jsonsign/
2010-12-24 14:07:13 +00:00
clean:
make -C ext/openpgp clean
make -C schema clean
2010-12-24 14:07:13 +00:00
make -C blobref clean
make -C client clean
2010-12-24 14:07:13 +00:00
make -C http clean
make -C jsonsign clean