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.

41 lines
806 B

  1. #---------------------------------------------------------------------
  2. #
  3. # This makefile is for use with the SMSBUILD utility. It builds the
  4. # WMI Scripting Host.
  5. #
  6. # created 03-23-99 alanbos
  7. #
  8. #---------------------------------------------------------------------
  9. TARGET=wmihost.dll
  10. STATIC=FALSE
  11. CINC+=\
  12. -I$(TOOLS)\
  13. -I$(IDL)
  14. CFLAGS=$(CFLAGS) -D_WIN32_WINNT=0x0400 -DBUILDING_DLL -DTEST
  15. release=core\$(RELDIR)
  16. DLLSTARTUP= -ENTRY:_DllMainCRTStartup$(DLLENTRY)
  17. !if "$(PROCESSOR_ARCHITECTURE)"=="x86"
  18. DEFFILE=INTEL.DEF
  19. !else
  20. DEFFILE=RISC.DEF
  21. !endif
  22. CPPFILES=\
  23. maindll.cpp \
  24. classfac.cpp \
  25. wmihost.cpp
  26. LIBS=\
  27. $(LIBS)\
  28. $(CONLIBS)\
  29. $(IDL)\OBJ$(PLAT)$(OPST)$(BLDT)D\wbemuuid.lib
  30. VER_STR_FILE_DESCRIPTION="WMI Active Scripting Host"