OBJS=main.obj windows.obj

all: $(OBJS)
    link /out:server.exe $(OBJS) WS2_32.lib

.obj:
    cl $*.c

clean:
    del *.obj server.exe