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.

50 lines
1.0 KiB

  1. #---------------------------------------------------------------------
  2. #
  3. # This makefile is for use with the SMSBUILD utility. It builds the
  4. # mof compiler executable.
  5. #
  6. # created 23-10-98 a-dcrews
  7. #
  8. #---------------------------------------------------------------------
  9. TARGET=hiperprov.dll
  10. NO_OPTIM=1
  11. NO_RTTI=1
  12. #CONSOLE=1
  13. CINC=$(CINC)\
  14. -I$(WBEMCOMN)\
  15. -I$(IDL)
  16. CFLAGS=$(CFLAGS) /GF /EHa
  17. release=core\$(RELDIR)
  18. !if "$(PROCESSOR_ARCHITECTURE)"=="x86"
  19. DEFFILE=HiPerProv.def
  20. !else
  21. DEFFILE=HiPerProvRisc.def
  22. !endif
  23. CPPFILES=\
  24. HiPerProv.cpp HiPerfServer.cpp \
  25. $(WBEMCOMN)\dllmain.cpp \
  26. $(WBEMCOMN)\localloc.cpp \
  27. $(WBEMCOMN)\unk.cpp \
  28. $(IDL)\wbemint_i.c
  29. LIBS=\
  30. $(LIBS)\
  31. $(CLIB)\msvcrt.lib \
  32. $(CLIB)\shell32.lib \
  33. $(CLIB)\user32.lib \
  34. $(CLIB)\kernel32.lib \
  35. $(CLIB)\gdi32.lib \
  36. $(CLIB)\advapi32.lib \
  37. $(CLIB)\oleaut32.lib \
  38. $(CLIB)\ole32.lib \
  39. $(CLIB)\uuid.lib \
  40. $(CLIB)\mpr.lib \
  41. $(CLIB)\version.lib \
  42. $(WBEMCOMN)\NT\$(objdir)\wbemcomn.lib \
  43. $(IDL)\$(objdir)\wbemuuid.lib \