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.

35 lines
1.0 KiB

  1. #############################################################################
  2. #
  3. # Microsoft Confidential
  4. # Copyright (C) Microsoft Corporation 1995
  5. # All Rights Reserved.
  6. #
  7. # Makefile for OPENHCI device
  8. #
  9. ##########################################################################
  10. ROOT = ..\..\..\..\..
  11. MINIPORT = OPENHCI
  12. SRCDIR = ..
  13. WANT_C1032 = TRUE
  14. DEPENDNAME = ..\depend.mk
  15. DESCRIPTION = MINI NT Universal HCD for USB
  16. VERDIRLIST = maxdebug debug retail
  17. LIBSNODEP = $(WDMROOT)\DDK\LIB\i386\usbd.lib
  18. LINK32FLAGS = $(LINK32FLAGS) -PDB:none -debugtype:both
  19. OBJS = ohciurb.obj \
  20. openhci.obj \
  21. async.obj \
  22. ohciroot.obj \
  23. ohcixfer.obj \
  24. dbg.obj
  25. !include ..\..\..\..\..\dev\master.mk
  26. INCLUDE = $(SRCDIR);$(SRCDIR)\..\..\inc;$(INCLUDE)
  27. !IF "$(VERDIR)" == "maxdebug" || "$(VERDIR)" == "MAXDEBUG"
  28. CFLAGS = $(CFLAGS:-nologo=) -DMAX_DEBUG
  29. !ENDIF