postnummer-app/backend/NMakefile

13 lines
138 B
Plaintext
Raw Normal View History

2023-02-09 12:50:26 +00:00
OBJS=main.obj windows.obj
all: $(OBJS)
link /out:server.exe $(OBJS) WS2_32.lib
.obj:
cl $*.c
clean:
del *.obj server.exe