CFLAGS= -D_CONSOLE -O2

all: httpget.exe

clean:
	del getopt.obj
	del httpget.exe
	del httpget.obj

httpget.obj:	httpget.c getopt.h
	cl -c $(CFLAGS) httpget.c

getopt.obj:	getopt.c getopt.h
	cl -c $(CFLAGS) getopt.c

httpget.exe:	httpget.obj getopt.obj
	link httpget.obj getopt.obj wsock32.lib
