OBJS=main.obj windows.obj http.obj
all: $(OBJS)
link /out:server.exe $(OBJS) WS2_32.lib
.obj:
cl $*.c
clean:
del *.obj server.exe