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.
41 lines
738 B
41 lines
738 B
#
|
|
# 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:
|
|
#
|
|
|
|
!INCLUDE $(NTMAKEENV)\makefile.plt
|
|
|
|
INCS = -I. -I..\..\runtime\mtrt\nt -I..\..\runtime\mtrt
|
|
|
|
DRT_MIDL = \
|
|
.\drt.h
|
|
|
|
TARGETS = drt.h
|
|
|
|
RPC_FLAGS = -ms_ext -c_ext -error allocation -oldnames -error ref
|
|
|
|
CPP = -cpp_cmd "$(MIDL_CPP)" $(MIDL_FLAGS)
|
|
|
|
|
|
all: $(TARGETS)
|
|
!IF "$(BUILDMSG)" != ""
|
|
@ech ; $(BUILDMSG) ;
|
|
!ENDIF
|
|
|
|
clean: delete_source all
|
|
|
|
delete_source:
|
|
-erase $(DRT_MIDL)
|
|
|
|
#
|
|
# MIDL COMPILE
|
|
#
|
|
|
|
|
|
|
|
drt.h : drt.idl
|
|
midl $(CPP) $(INCS) $(RPC_FLAGS) drt.idl \
|
|
-cstub .\drt_c.c -sstub .\drt_s.c \
|
|
-prefix client CLIENT_
|