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.

54 lines
976 B

  1. #---------------------------------------------------------------------
  2. #
  3. # This makefile is for use with the SMSBUILD utility. It builds the
  4. # WBEM core dll.
  5. #
  6. #---------------------------------------------------------------------
  7. TARGET=ntperf.dll
  8. NO_OPTIM=1
  9. STATIC=1
  10. CDEFS+=/D_WIN32_WINNT=0x0400
  11. CDEFS+=/DBUILDNO=$(BUILDNO)
  12. GCFLAGS=$(GCFLAGS) /GR-
  13. CFLAGS=$(CFLAGS) /GF /EHa
  14. CINC=$(CINC) -I.\
  15. -I$(DEFDRIVE)$(DEFDIR)\IDL \
  16. DLLSTARTUP= -ENTRY:_DllMainCRTStartup$(DLLENTRY)
  17. release=core\$(RELDIR)
  18. !if "$(PROCESSOR_ARCHITECTURE)"=="x86"
  19. DEFFILE=ntperf.DEF
  20. !else
  21. DEFFILE=RISC.DEF
  22. !endif
  23. CPPFILES=\
  24. .\server.cpp \
  25. .\ntperf.cpp \
  26. CFILES=\
  27. $(DEFDRIVE)$(DEFDIR)\IDL\WBEMINT_I.C \
  28. LIBS=\
  29. $(LIBS)\
  30. $(IDL)\OBJ$(PLAT)$(OPST)$(BLDT)D\wbemuuid.lib \
  31. $(CLIB)\shell32.lib \
  32. $(CLIB)\user32.lib \
  33. $(CLIB)\msvcrt.lib \
  34. $(CLIB)\kernel32.lib \
  35. $(CLIB)\advapi32.lib \
  36. $(CLIB)\oleaut32.lib \
  37. $(CLIB)\ole32.lib \
  38. $(CLIB)\uuid.lib \