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.

32 lines
670 B

  1. CPP_CMD=cl
  2. !if $(386)
  3. CPP_CMD=cl386
  4. !endif
  5. !if $(ALPHA)
  6. CPP_CMD=$(ALPHA_CC)
  7. !endif
  8. iperf.h: iperf.idl
  9. midl iperf.idl \
  10. -Zp8 \
  11. -I$(INCLUDES) \
  12. -ms_ext \
  13. -c_ext \
  14. -out ..\proxy \
  15. -header ..\idl\iperf.h \
  16. -iid ..\perfuuid\iperf_i.c \
  17. $(C_DEFINES) \
  18. -cpp_cmd $(CPP_CMD) \
  19. -cpp_opt "-nologo -DMIDL_PASS $(C_DEFINES) -I$(INCLUDES) -E -Tc"
  20. #
  21. # This target compiles all .idl files into their corresponding _?.c?? and
  22. # .h components
  23. #
  24. allidl: iperf.h
  25. clean:
  26. erase iperf.h >NUL 2>NUL
  27.