6 lines
63 B
Makefile
6 lines
63 B
Makefile
|
cc=g++ -Wall -O2 -lm
|
||
|
|
||
|
default:
|
||
|
$(cc) blockchain.cpp -o chain
|
||
|
|