6 lines
67 B
Makefile
6 lines
67 B
Makefile
|
ccflags = -O3
|
||
|
compile:
|
||
|
gcc $(ccflags) pow.c -o pow
|
||
|
clean:
|
||
|
rm pow
|