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.
|
|
# # This is the MKTYBLIB compile phase of the build process. # # Builds Type Library for LDAP provider # #
!INCLUDE $(NTMAKEENV)\makefile.plt
# # TARGET specific defines ( do not use extensions!) #
TARGET_TLB = adsldp TARGET_H = ildp SOURCE_ODL = ldap
!IF "$(ADSI_NT40_BUILD)" == "1" DEPENDENCIES = \ ..\types\$(_OBJ_DIR)\$(TARGET_DIRECTORY)\activeds.tlb \ ldap2.h !ELSE DEPENDENCIES = \ ..\types\$(_OBJ_DIR)\$(TARGET_DIRECTORY)\activeds.tlb \ $(SDK_LIB_DEST)\$(TARGET_DIRECTORY)\stdole2.tlb \ ldap2.h !ENDIF
# # Common defines #
TARGETS = $(TARGET_TLB).tlb $(TARGET_H).h IMPORT = UNICODE = 1
INCLUDE = $(SDK_INC_PATH)
MIDLODL = midl /I $(INCLUDE) /ms_ext /client none /server none /newtlb /out .\$(_OBJ_DIR)\$(TARGET_DIRECTORY)
CPP = -cpp_cmd "$(MIDL_CPP)" -cpp_opt "-E -nologo -DNO_STRICT $(MIDL_FLAGS) -I. -I$(SDK_INC_PATH) -I$(CRT_INC_PATH) -I$(OAK_INC_PATH)"
# # Define Products and Dependencies #
all: $(TARGETS) !IF "$(BUILDMSG)" != "" @ech ; $(BUILDMSG) ; !ENDIF
clean: clean_source all
clean_source: erase $(TARGETS)
# # MIDL COMPILE #
$(TARGETS): $(DEPENDENCIES) $(SOURCE_ODL).odl md $(_OBJ_DIR)\$(TARGET_DIRECTORY) $(MIDLODL) $(TLB_SWITCHES) $(TARGET_TLB).tlb /h $(TARGET_H).h $(SOURCE_ODL).odl
|