c-ipfs/Makefile
John Jones 50ffade515 More work on storage and cleanup
Added flatfs, as well as fixed some memory leaks. Valgrind across tests
now reports 0 memory leaks.
2016-11-28 08:09:00 -05:00

29 lines
490 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 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 thirdparty; make clean;
cd test; make clean;