c-ipfs/Makefile
John Jones 4626b69381 More code for storage
Pushing through on the ipfs block put use case. Building out the
necessary code to write to the blockstore.
2016-11-28 16:13:46 -05:00

31 lines
542 B
Makefile

DEBUG = true
export DEBUG
all:
cd cid; make all;
cd cmd; make all;
cd commands; make all;
cd core; make all;
cd multibase; make all;
cd os; make all;
cd repo; make all;
cd flatfs; make all;
cd datastore; make all;
cd thirdparty; make all;
cd test; make all;
clean:
cd cid; make clean;
cd cmd; make clean;
cd commands; make clean;
cd core; make clean;
cd multibase; make clean;
cd os; make clean;
cd repo; make clean;
cd flatfs; make clean;
cd datastore; make clean;
cd thirdparty; make clean;
cd test; make clean;