CC = gcc CCFLAGS = -lxnet -Wall -ansi -pedantic all: newsServer newsClient newsMulticast newsServer: newsServer.c $(CC) $(CCFLAGS) -o newsServer newsServer.c newsClient: newsClient.c $(CC) $(CCFLAGS) -o newsClient newsClient.c newsMulticast: newsMulticast.c $(CC) $(CCFLAGS) -o newsMulticast newsMulticast.c clean: rm newsClient newsServer