Leaked source code of windows server 2003
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.3 KiB

  1. #---------------------------------------------------------------------
  2. #
  3. # This makefile is for use with the SMSBUILD utility. It builds the
  4. # mof compiler executable.
  5. #
  6. # created 11-19-96 a-davj
  7. #
  8. #---------------------------------------------------------------------
  9. TARGET=mofcomp.exe
  10. NO_OPTIM=1
  11. NO_RTTI=1
  12. CONSOLE=1
  13. COREDLL=$(DEFDRIVE)$(DEFDIR)\WinMgmt\COREDLL
  14. CINC=$(CINC)\
  15. -I.. \
  16. -I$(IDL) \
  17. -I$(IDL)\$(OBJDIR) \
  18. -I$(MINIMFC) \
  19. -I$(WBEMCOMN) \
  20. -I$(mofcomp_dll) \
  21. -I$(STDLIBRARY)
  22. RCFILES=..\mofcomp.rc
  23. LFLAGS=$(LFLAGS) /STACK:1048576,8192
  24. CFLAGS=$(CFLAGS) /GF /EHa
  25. CPPFILES=\
  26. ..\mofcomp.cpp
  27. ..\mofutils.cpp
  28. $(stdlibrary)\cominit.cpp
  29. LIBS=\
  30. $(LIBS)\
  31. !if "$(WBEMCOMN_TARGET)"=="__WIN9x_BUILD__"
  32. $(WBEMCOMN)\Win9x\$(objdir)\wbemcomn.lib \
  33. !endif
  34. !if "$(WBEMCOMN_TARGET)"=="__WINNT_BUILD__"
  35. $(WBEMCOMN)\NT\$(objdir)\wbemcomn.lib \
  36. !endif
  37. $(IDL)\OBJ$(PLAT)$(OPST)$(BLDT)D\wbemuuid.lib \
  38. $(CLIB)\shell32.lib \
  39. $(CLIB)\msvcrt.lib \
  40. $(CLIB)\kernel32.lib \
  41. $(CLIB)\user32.lib \
  42. $(CLIB)\gdi32.lib \
  43. $(CLIB)\advapi32.lib \
  44. $(CLIB)\ole32.lib \
  45. $(CLIB)\oleaut32.lib \
  46. $(CLIB)\uuid.lib \
  47. $(CLIB)\mpr.lib \
  48. $(CLIB)\version.lib \
  49. $(MINIMFC)\$(objdir)\minimfc.lib