CC=gcc CFLAGS=-Wall -O2 all: compile link compile: $(CC) $(CFLAGS) -c server.c link: $(CC) $(CFLAGS) server.o -o server clean: del *.o del server.exe