postnummer-app/backend/Makefile

13 lines
138 B
Makefile
Raw Normal View History

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