You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
315 B
16 lines
315 B
# Nmake macros for building Windows 32-Bit apps
|
|
|
|
APPVER=4.0
|
|
|
|
!include <win32.mak>
|
|
|
|
objs=rnrclnt.obj
|
|
|
|
all: rnrclnt.exe
|
|
|
|
.c.obj:
|
|
$(cc) $(cdebug) $(cflags) $(cvars) $*.c
|
|
|
|
rnrclnt.exe: rnrclnt.obj
|
|
$(link) $(linkdebug) $(conflags) -out:rnrclnt.exe rnrclnt.obj ws2_32.lib mswsock.lib $(conlibs)
|
|
|