Leaked source code of windows server 2003
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.

35 lines
705 B

  1. # DEST_TREE is set by the calling makefile
  2. UMON_DEST=..\inc\$(DEST_TREE)
  3. !ifndef MIDL
  4. MIDL = midl.exe
  5. !endif
  6. #
  7. # BUGBUG - We want to compile these IDL files /Oi but the interpretor
  8. # cannot handle error_status_t parameters. When it can, change /Os to /Oi
  9. #
  10. MIDL_FLAGS= \
  11. -Zp8 \
  12. -I$(INCLUDES) \
  13. -Os \
  14. -oldnames \
  15. -char unsigned \
  16. -error allocation \
  17. -ms_ext -c_ext \
  18. $(C_DEFINES) \
  19. -cpp_cmd $(TARGET_CPP)
  20. CSWITCH=-prefix cstub _
  21. urlmon.h: ..\urlmon.idl
  22. $(MIDL) $(MIDL_FLAGS) \
  23. -cstub $(UMON_DEST)\umon_c.c \
  24. -sstub $(UMON_DEST)\umon_s.c \
  25. ..\urlmon.idl
  26. allidl: urlmon.h
  27. clean:
  28. erase urlmon.h >NUL 2>NUL
  29.