home *** CD-ROM | disk | FTP | other *** search
Makefile | 1997-10-15 | 464 b | 24 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=rnrsetup.obj
-
-
- all: rnrsetup.exe
-
- .c.obj:
- $(cc) $(cdebug) $(cflags) $(cvars) $*.c
-
- rnrsetup.exe: rnrsetup.obj
- $(link) $(linkdebug) $(conflags) -out:rnrsetup.exe rnrsetup.obj ws2_32.lib mswsock.lib $(conlibs)
-