Windows NT 4.0 source code leak
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.

51 lines
943 B

4 years ago
  1. !IF 0
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. sources.
  5. Abstract:
  6. This file specifies the target component being built and the list of
  7. sources files needed to build that component. Also specifies optional
  8. compiler switches and libraries that are unique for the component being
  9. built.
  10. Author:
  11. Ramon J. San Andres (ramonsa) 10-Aug-1993
  12. !ENDIF
  13. MAJORCOMP=vctools
  14. MINORCOMP=link
  15. TARGETNAME=disasm68
  16. TARGETPATH=obj
  17. TARGETTYPE=LIBRARY
  18. UMTYPE=console
  19. SOURCES= bldiasm.cpp \
  20. disasm68.cpp \
  21. striasm.cpp \
  22. traps.cpp
  23. !ifndef LANGAPI_DIR
  24. LANGAPI_DIR = $(BASEDIR)\private\sdktools\vctools\langapi
  25. !endif
  26. INCLUDES = ..\coff;$(LANGAPI_DIR)\include;$(LANGAPI_DIR)\undname
  27. USE_CRTDLL = 1
  28. MSC_WARNING_LEVEL = -WX -W3
  29. C_DEFINES = -DNT_BUILD
  30. !if "$(NTDEBUG)" == "retail" || "$(NTDEBUG)" == "" || "$(NTDEBUG)" == "ntsdnodbg"
  31. C_DEFINES = $(C_DEFINES) -DNDEBUG
  32. !endif