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
583 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. SM_IDL = smgr
  8. SM_CSTUB = $(SM_IDL)_c.c
  9. SM_SSTUB = $(SM_IDL)_s.c
  10. SM_HEADER = obj\$(SM_IDL).h
  11. CPP = -cpp_cmd "$(MIDL_CPP)" $(MIDL_FLAGS) -error ref
  12. #
  13. allidl: smgr
  14. #
  15. # MIDL COMPILE
  16. #
  17. smgr: $(SM_HEADER) $(SM_CSTUB) $(SM_SSTUB)
  18. $(SM_HEADER) $(SM_CSTUB) $(SM_SSTUB) : .\$(SM_IDL).idl
  19. midl -ms_ext -c_ext -prefix server _ $(CPP) $(INCS) -header $(SM_HEADER) \
  20. -cstub $(SM_CSTUB) -sstub $(SM_SSTUB) .\$(SM_IDL).idl