CC = gcc -std=c11 -pedantic -Wall

p1: p1.c rename.h tester.o Makefile
	$(CC) -o p1 p1.c tester.o # -DDEBUG 

tester.o: tester.c rename.h Makefile
	gcc -c -w tester.c # -DDEBUG

zip:
	rm -f a9.zip && cd .. && zip -rq a9.zip a9 && mv a9.zip a9

clean:
	rm -f a.out core p1 tester.o
