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.

43 lines
775 B

  1. # component
  2. MAJORCOMP=setup
  3. MINORCOMP=w95upg
  4. # target
  5. TARGETNAME=migrate
  6. TARGETPATH=obj
  7. TARGETTYPE=DYNLINK
  8. DLLENTRY=_DllMainCRTStartup
  9. ALT_PROJECT_TARGET=win9xmig\test
  10. # compiler options
  11. USE_MSVCRT=1
  12. CHICAGO_PRODUCT=1
  13. # linker options
  14. LINKER_FLAGS=$(LINKER_FLAGS) -SWAPRUN:CD
  15. SUBSYSTEM_VERSION=4.00
  16. # include path
  17. INCLUDES=$(PROJECT_ROOT)\ntsetup\inc
  18. # stub sources
  19. SOURCES=
  20. # link libraries
  21. TARGETLIBS=\
  22. $(SDK_LIB_PATH)\setupapi_chicago.lib \
  23. $(SDK_LIB_PATH)\kernel32.lib \
  24. $(SDK_LIB_PATH)\user32.lib \
  25. $(SDK_LIB_PATH)\advapi32.lib \
  26. # x86-specific sources
  27. I386_SOURCES=test.c test.rc
  28. # pre-compiled header options (x86-only)
  29. !if $(386)
  30. PRECOMPILED_INCLUDE=pch.h
  31. PRECOMPILED_PCH=pch.pch
  32. PRECOMPILED_OBJ=pch.obj
  33. !endif