Source code of Windows XP (NT5)
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.

28 lines
586 B

  1. #
  2. # This is the MIDL compile phase of the build process.
  3. #
  4. # The following is where you put the name of your .idl file without
  5. # the .idl extension:
  6. #
  7. RT_IDL = rpcrt
  8. RT_CSTUB = $(RT_IDL)_c.c
  9. RT_SSTUB = $(RT_IDL)_s.c
  10. RT_HEADER = obj\$(RT_IDL).h
  11. CPP = -cpp_cmd "$(MIDL_CPP)" $(MIDL_FLAGS) -error ref
  12. #
  13. allidl: rpcrt
  14. #
  15. # MIDL COMPILE
  16. #
  17. rpcrt: $(RT_HEADER) $(RT_CSTUB) $(RT_SSTUB)
  18. $(RT_HEADER) $(RT_CSTUB) $(RT_SSTUB) : .\$(RT_IDL).idl
  19. midl -ms_ext -c_ext -prefix server _ $(CPP) $(INCS) -header $(RT_HEADER) \
  20. -cstub $(RT_CSTUB) -sstub $(RT_SSTUB) .\$(RT_IDL).idl