1: 1.o
	gcc -g -no-pie -o 1 1.o
1.o: 1.s
	as -gstabs -o 1.o 1.s

.PHONY:
	clean

clean:
	rm -f 1.o
	rm -f 1
