7 lines
79 B
Makefile
7 lines
79 B
Makefile
cpfast: cpfast.c
|
|
cc -march=native -O3 -s *.c -o cpfast
|
|
|
|
clean:
|
|
rm -f cpfast
|
|
|