all: two warn.txt

two: two.c
	gcc -g -Wall -o two two.c

warn.txt: two.c
	gcc -g -Wall -o two two.c > warn.txt 2>&1

clean:
	rm core two.o two

