CC = gcc -std=gnu99
CFLAGS = -Wall -O

.PHONY: run
run: ./pw
	./pw
./pw: pw.o

