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.

58 lines
1.1 KiB

  1. #---------------------------------------------------------------------
  2. #
  3. # This makefile is for use with the SMSBUILD utility. It builds the
  4. # mof compiler executable.
  5. #
  6. # created 5-11-98 a-dcrews
  7. #
  8. #---------------------------------------------------------------------
  9. TARGET=hiperstress.exe
  10. NO_OPTIM=1
  11. NO_RTTI=1
  12. CONSOLE=1
  13. CINC=$(CINC)\
  14. -I$(IDL) \
  15. -I$(QL) \
  16. -I$(WBEMCORE) \
  17. -I$(WBEMCOMN) \
  18. -I$(STDLIBRARY) \
  19. -I$(MCDIR)
  20. CFLAGS=$(CFLAGS) /GF /EHa
  21. release=core\$(RELDIR)
  22. !if "$(PROCESSOR_ARCHITECTURE)"=="x86"
  23. DEFFILE=HiPerProv.def
  24. !else
  25. DEFFILE=HiPerProvRisc.def
  26. !endif
  27. CPPFILES=\
  28. Agents.cpp\
  29. HiPerStress.cpp\
  30. Locator.cpp\
  31. Main.cpp\
  32. Object.cpp\
  33. Refresher.cpp\
  34. Service.cpp\
  35. $(stdlibrary)\cominit.cpp\
  36. LIBS=\
  37. $(LIBS)\
  38. $(CLIB)\msvcrt.lib \
  39. $(CLIB)\shell32.lib \
  40. $(CLIB)\user32.lib \
  41. $(CLIB)\kernel32.lib \
  42. $(CLIB)\gdi32.lib \
  43. $(CLIB)\advapi32.lib \
  44. $(CLIB)\oleaut32.lib \
  45. $(CLIB)\ole32.lib \
  46. $(CLIB)\uuid.lib \
  47. $(CLIB)\mpr.lib \
  48. $(CLIB)\version.lib \
  49. $(WBEMCOMN)\NT\$(objdir)\wbemcomn.lib \
  50. $(IDL)\$(objdir)\wbemuuid.lib \