# # 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_