mirror of https://github.com/lianthony/NT4.0
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.
71 lines
1.6 KiB
71 lines
1.6 KiB
#
|
|
# this is the midl compile phase of the build process.
|
|
#
|
|
# The following is where you put the name of your .idl file without
|
|
# the .idl extension:
|
|
#
|
|
|
|
|
|
!if "$(OS)" == "Windows_NT"
|
|
|
|
!INCLUDE $(NTMAKEENV)\makefile.plt
|
|
|
|
SDKINC = $(BASEDIR)\public\sdk\inc
|
|
SDKCRTINC = $(BASEDIR)\public\sdk\inc\crt
|
|
INCS = -I$(SDKINC) -I$(SDKCRTINC)
|
|
|
|
CPP = -cpp_cmd "$(MIDL_CPP)" $(MIDL_FLAGS) $(C_DEFINES) $(NET_C_DEFINES)
|
|
|
|
!else
|
|
|
|
FLAGS = -D_X86_ -Di386 -D_WCHAR_T_DEFINED
|
|
CPP = -cpp_cmd "cl" -cpp_opt "-E $(FLAGS) $(INCS) $(C_DEFINES)"
|
|
|
|
HEADER_TARGETS =
|
|
|
|
!endif
|
|
|
|
|
|
|
|
IDL_NAME = espidl
|
|
|
|
CLIENT_TARGETS = exe\$(IDL_NAME)_c.c \
|
|
|
|
SERVER_TARGETS = tsp\$(IDL_NAME)_s.c
|
|
|
|
EXTRN_DEPENDS =
|
|
|
|
|
|
#
|
|
# Define Products and Dependencies
|
|
#
|
|
|
|
all: $(CLIENT_TARGETS) $(SERVER_TARGETS) $(EXTRN_DEPENDS)
|
|
!IF "$(BUILDMSG)" != ""
|
|
@ech ; $(BUILDMSG) ;
|
|
!ENDIF
|
|
|
|
clean: delete_source all
|
|
|
|
delete_source:
|
|
-erase $(CLIENT_TARGETS) $(SERVER_TARGETS)
|
|
|
|
#
|
|
# MIDL COMPILE
|
|
#
|
|
|
|
$(CLIENT_TARGETS) : $(IDL_NAME).idl $(EXTRN_DEPENDS)
|
|
midl -Oi -server none -oldnames -error allocation -error ref -ms_ext -c_ext $(CPP) $(IDL_NAME).idl $(INCS)
|
|
IF EXIST $(IDL_NAME)_c.c copy $(IDL_NAME)_c.c .\exe
|
|
IF EXIST $(IDL_NAME)_c.c del $(IDL_NAME)_c.c
|
|
|
|
IF EXIST $(IDL_NAME).h copy $(IDL_NAME).h .\exe
|
|
|
|
|
|
$(SERVER_TARGETS) : $(IDL_NAME).idl $(EXTRN_DEPENDS)
|
|
midl -client none -oldnames -error stub_data -error allocation -error ref -ms_ext -c_ext $(CPP) $(IDL_NAME).idl $(INCS)
|
|
IF EXIST $(IDL_NAME)_s.c copy $(IDL_NAME)_s.c .\tsp
|
|
IF EXIST $(IDL_NAME)_s.c del $(IDL_NAME)_s.c
|
|
|
|
IF EXIST $(IDL_NAME).h copy $(IDL_NAME).h .\tsp
|
|
IF EXIST $(IDL_NAME).h del $(IDL_NAME).h
|