CC = gcc CCFLAGS = -O2 all : udp_server clean : rm udp_server udp_server : udp_server.c $(CC) $(CCFLAGS) -o $@ $<