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
/
subauth
/
makefile
next >
Wrap
Makefile
|
1996-04-18
|
383b
|
16 lines
TARGETOS=WINNT
!include <win32.mak>
all: subauth.dll
subauth.obj: subauth.c
$(cc) $(cdebug) $(cflags) $(cvarsdll) -I..\include $*.c
subauth.lib: subauth.obj subauth.def
$(implib) -machine:$(CPU) -def:subauth.def -out:subauth.lib
subauth.dll: subauth.obj
$(link) $(linkdebug) $(dlllflags) $(guilibsdll) \
$** -out:subauth.dll -def:subauth.def netapi32.lib