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.

40 lines
1.1 KiB

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