home *** CD-ROM | disk | FTP | other *** search
Makefile | 1997-10-15 | 450 b | 23 lines |
- # Nmake macros for building Windows 32-Bit apps
-
- APPVER=4.0
-
- !include <win32.mak>
-
- !if "$(CPU)" == "i386"
- cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
- !else
- cflags = $(cflags) -D_CRTAPI1= -D_CRTAPI2=
- !endif
-
- objs=rnrsrv.obj
-
- all: rnrsrv.exe
-
- .c.obj:
- $(cc) $(cdebug) $(cflags) $(cvars) $*.c
-
- rnrsrv.exe: rnrsrv.obj
- $(link) $(linkdebug) $(conflags) -out:rnrsrv.exe rnrsrv.obj ws2_32.lib mswsock.lib $(conlibs)
-
-