home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
winbase
/
security
/
winnt
/
takeown
/
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
|
332 b
|
16 lines
# Nmake macros for building Windows 32-Bit apps
TARGETOS=WINNT
!include <ntwin32.mak>
my_libs = advapi32.lib
all: takeown.exe
takeown.obj: takeown.c
$(cc) $(cflags) $(cvars) $(cdebug) takeown.c
takeown.exe: takeown.obj
$(link) $(linkdebug) $(conflags) -out:takeown.exe takeown.obj $(conlibs) $(my_libs)