# INFO-F-201 : Systèmes d'exploitation I
# Projet 2 : Le super serveur et les attaques DoS
# Quentin Delhaye, IRCI3-T, 2012-2013

TARGET=client serveur

normal: $(TARGET)

client: client.c
	gcc -Wall client.c -o client

serveur: serveur.c
	gcc -Wall serveur.c -o serveur

clean:
	$(RM) $(TARGET) 
