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.

31 lines
634 B

  1. !if $(386)
  2. CPP_CMD=cl386
  3. !endif
  4. !if $(MIPS)
  5. CPP_CMD=mcl
  6. !endif
  7. !if $(ALPHA)
  8. CPP_CMD=$(ALPHA_CC)
  9. !endif
  10. allidl: test.h
  11. clean:
  12. erase test.h 1>nul 2>nul
  13. test.h: ..\test.idl
  14. midl ..\test.idl \
  15. -cswtch test_z.c \
  16. -Zp8 \
  17. -I$(INCLUDES) \
  18. -no_warn \
  19. -char unsigned \
  20. -mode c_port \
  21. -DMIDL_PASS \
  22. $(C_DEFINES) \
  23. -cpp_cmd "$(CPP_CMD)" \
  24. -cpp_opt "-nologo -DMIDL_PASS $(C_DEFINES) -I$(INCLUDES) -E -Tc"