CC = gcc -Wall

all:
	$(CC) phresize.c -o phresize -I/usr/include -L/usr/lib -lph

clean:
	@rm phresize
