home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
begin
/
simple
/
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
|
1996-01-24
|
246 b
|
12 lines
# Nmake macros for building Windows 32-Bit apps
!include <ntwin32.mak>
all: simple.exe
simple.obj: simple.c
$(cc) $(cflags) $(cvars) simple.c
simple.exe: simple.obj
$(link) $(conflags) -out:simple.exe simple.obj $(conlibs)