postnummer-app/backend/NMakefile

13 lines
147 B
Plaintext
Raw Permalink Normal View History

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