c-ipfs/Makefile

23 lines
352 B
Makefile
Raw Normal View History

DEBUG = true
export DEBUG
2016-10-27 01:14:07 +00:00
all:
cd cmd; make all;
2016-10-27 01:16:25 +00:00
cd commands; make all;
2016-10-27 18:11:34 +00:00
cd core; make all;
cd os; make all;
cd repo; make all;
2016-10-27 01:14:07 +00:00
cd test; make all;
2016-11-07 21:29:30 +00:00
cd thirdparty; make all;
2016-10-27 01:14:07 +00:00
clean:
cd cmd; make clean;
2016-10-27 01:16:25 +00:00
cd commands; make clean;
2016-10-27 18:11:34 +00:00
cd core; make clean;
cd os; make clean;
cd repo; make clean;
cd test; make clean;
2016-11-07 21:29:30 +00:00
cd thirdparty; make clean;