Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

60 lines
1.4 KiB

#
# makefile.inc
# Makefile for generating files from the .idl file
#
# Specify the following in the file for use
#
# IDL_FILE_NAME ( without the .idl suffix)
# IDL_FLAGS if any thing specific required
#
!INCLUDE $(NTMAKEENV)\makefile.plt
IDL_FILE_NAME = fhcache
IDL_FLAGS = /I $(BASEDIR)\public\sdk\inc -DREGISTER_PROXY_DLL
SDKINC = $(BASEDIR)\public\sdk\inc
INCS = -I. -I..\..\..\..\inc
CLIENT_STUB =$(IDL_FILE_NAME)_i.c
SERVER_STUB =$(IDL_FILE_NAME)_p.c
DLL_STUB =dlldata.c
HEADER_FILE =..\inc\$(IDL_FILE_NAME).h
CLIENT_TARGETS = $(CLIENT_STUB) \
SERVER_TARGETS = $(SERVER_STUB) \
DLL_TARGETS = $(DLL_STUB) \
TARGETS = $(CLIENT_TARGETS) $(SERVER_TARGETS) \
$(HEADER_FILE) $(DLL_TARGETS)
CPP = -cpp_cmd "$(MIDL_CPP)" $(MIDL_FLAGS) \
$(C_DEFINES) -DMIDL_PASS
MSC_WARNING_LEVEL= /W4 /WX
#
# Define output and dependencies
#
all: $(TARGETS) $(EXTRN_DEPENDS)
!IF "$(BUILDMSG)" != ""
@ech ; $(BUILDMSG) ;
!ENDIF
clean: delsrc all
delsrc:
-erase $(TARGETS)
#
# MIDL Compile stuff
#
$(HEADER_FILE) $(CLIENT_TARGETS) $(SERVER_TARGETS) $(DLL_TARGETS): .\$(IDL_FILE_NAME).idl
midl -no_stamp $(MIDL_OPTIMIZATION_NT5) -h $(HEADER_FILE) -iid $(CLIENT_STUB) -proxy $(SERVER_STUB) -dlldata $(DLL_STUB) $(IDL_FLAGS) $(CPP) $(INCS) .\$(IDL_FILE_NAME).idl