2010-12-24 14:07:13 +00:00
|
|
|
all:
|
2010-12-30 20:45:00 +00:00
|
|
|
make -C ext/openpgp install
|
2010-12-24 14:07:13 +00:00
|
|
|
make -C blobref install
|
2011-01-02 22:36:03 +00:00
|
|
|
mkdir -p $(GOROOT)/src/pkg/camli
|
|
|
|
mkdir -p $(GOROOT)/src/pkg/camli
|
2010-12-30 20:45:00 +00:00
|
|
|
make -C schema install
|
2011-01-02 22:36:03 +00:00
|
|
|
make -C client install
|
2010-12-24 14:07:13 +00:00
|
|
|
make -C http install
|
|
|
|
make -C jsonsign install
|
2011-01-02 22:36:03 +00:00
|
|
|
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:
|
2010-12-30 20:45:00 +00:00
|
|
|
make -C ext/openpgp clean
|
|
|
|
make -C schema clean
|
2010-12-24 14:07:13 +00:00
|
|
|
make -C blobref clean
|
2011-01-02 22:36:03 +00:00
|
|
|
make -C client clean
|
2010-12-24 14:07:13 +00:00
|
|
|
make -C http clean
|
|
|
|
make -C jsonsign clean
|
|
|
|
|