# Makefile COPYRIGHT FUJITSU LIMITED 2018
target:
	gcc -O0 -g main.c -o a.out

clean:
	rm -f a.out
