home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
netds
/
rpc
/
whello
/
makefile
next >
Wrap
Makefile
|
1997-10-15
|
2KB
|
68 lines
#*************************************************************#
#** **#
#** Microsoft RPC Examples **#
#** whello Application **#
#** Copyright(c) Microsoft Corp. 1991-1995 **#
#** **#
#*************************************************************#
!include <ntwin32.mak>
!if "$(CPU)" == "i386"
cflags = $(cflags) -D_CRTAPI1=_cdecl -D_CRTAPI2=_cdecl
!else
cflags = $(cflags) -D_CRTAPI1= -D_CRTAPI2=
!endif
.c.obj:
$(cc) $(cdebug) $(cflags) $(cvarsdll) $<
all: whellos whelloc
# Update the resource if necessary
whello.rbj: whello.rc whello.h rpc.ico whello.dlg
rc -r whello.rc
cvtres -$(CPU) whello.res -o whello.rbj
# Update the executable file if necessary, and if so, add the resource back in.
whelloc : whelloc.exe
whelloc.exe : whelloc.obj whello.def whello_c.obj whello.rbj
$(link) $(linkdebug) $(guiflags) -out:whelloc.exe -map:whelloc.map \
whelloc.obj whello_c.obj whello.rbj \
rpcrt4.lib $(guilibsdll)
whelloc.obj : whelloc.c whelloc.h whello.h
whello_c.obj : whello_c.c whello.h
# Make the whellos
whellos : whellos.exe
whellos.exe : whellos.obj whellop.obj whello_s.obj
$(link) $(linkdebug) $(conflags) -out:whellos.exe -map:whellos.map \
whellos.obj whellop.obj whello_s.obj \
rpcrt4.lib $(conlibsdll)
whellos.obj : whellos.c whello.h
whellop.obj : whellop.c whello.h
whello_s.obj : whello_s.c whello.h
# Make the stubs source
whello.h whello_c.c whello_s.c : whello.idl whello.acf
midl -oldnames -cpp_cmd $(cc) -cpp_opt "-E" whello.idl
# Clean up everything
cleanall : clean
-del *.exe
# Clean up everything but the .EXEs
clean :
-del *.obj
-del *.map
-del whello.res
-del whello.rbj
-del whello_c.c
-del whello_s.c
-del whello.h