CC = gcc CFLAGS = -O2 -std=c99 -pedantic -Wall -W -pipe PROG = webclient all: $(PROG) webclient: webclient.c clean: -rm -f $(PROG) *.htm *.html *.png *.gif *.jpg *.jpeg *.bmp