7 lines
99 B
Makefile
7 lines
99 B
Makefile
# Makefile COPYRIGHT FUJITSU LIMITED 2018
|
|
target:
|
|
gcc -O0 -g main.c -o a.out
|
|
|
|
clean:
|
|
rm -f a.out
|