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.

44 lines
1.0 KiB

  1. #############################################################################
  2. #
  3. # Microsoft Confidential
  4. # Copyright (C) Microsoft Corporation 1998-1999
  5. # All Rights Reserved.
  6. #
  7. # Makefile for RT executive
  8. #
  9. ##########################################################################
  10. ROOT = ..\..\..\..
  11. SRCDIR = ..
  12. MINIPORT = RT
  13. WANT_WDMDDK = TRUE
  14. WANT_MASM7 = TRUE
  15. IS_OEM = TRUE
  16. DEPENDNAME = ..\depend.mk
  17. DESCRIPTION = RealTime Executive
  18. VERDIRLIST = debug retail
  19. LINK32FLAGS = $(LINK32FLAGS) /DEF:..\rt.def
  20. LIBSNODEP = vxdwraps.clb
  21. RESNAME = $(MINIPORT)
  22. OBJS = device.obj generic.obj rt.obj apic.obj msr.obj rtexcept.obj
  23. CFASTFLAGS = -O2gityb1
  24. CFLAG_OPT = $(CFASTFLAGS) -G5
  25. !include $(ROOT)\wdm10\wdm.mk
  26. #CFLAGS = $(CFLAGS) -Fc
  27. #CFLAGS = $(CFLAGS) -P -EP
  28. !IF "$(WINICE_PATH)" != ""
  29. CFLAGS = $(CFLAGS) -Zi
  30. !ENDIF
  31. !IF "$(VERDIR)" == "debug"
  32. CFLAGS = $(CFLAGS:yb1=b1)
  33. !ENDIF