home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
winbase
/
io
/
floppy
/
makefile
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Makefile
|
1995-02-03
|
248 b
|
14 lines
# Nmake macros for building Windows 32-Bit apps
TARGETOS=WINNT
!include <ntwin32.mak>
all: mfmt.exe
mfmt.obj: mfmt.c
$(cc) $(cflags) $(cvars) mfmt.c
mfmt.exe: mfmt.obj
$(link) $(conflags) -out:mfmt.exe mfmt.obj $(conlibs)