#Makefile gnrique pour les TPs systme
CC=cc

clean:
	rm -f *.o *.BAK
.c.o:
	$(CC) -c $<

.c:
	$(CC) -o $* $< 

