PROJECT=accepter

all: ${PROJECT}

clean: 
	rm -f *~ *.bak *.o ${PROJECT}

${PROJECT}: ${PROJECT}.o

%.o: %.c
	gcc -c -o $@ $< -Wall

