Leaked source code of windows server 2003
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.

37 lines
1.0 KiB

  1. #############################################################################
  2. #
  3. # Microsoft Confidential
  4. # Copyright (C) Microsoft Corporation 1995
  5. # All Rights Reserved.
  6. #
  7. # Makefile for USBD device
  8. #
  9. ##########################################################################
  10. ROOT = ..\..\..\..
  11. MINIPORT = USBD
  12. SRCDIR = ..
  13. WANT_WDMDDK = TRUE
  14. DEPENDNAME = ..\depend.mk
  15. DESCRIPTION = MINI NT USB Driver
  16. VERDIRLIST = maxdebug debug retail
  17. MINIPORTDEF = TRUE
  18. LINK32FLAGS = $(LINK32FLAGS) -debugtype:both
  19. RESNAME=usbd
  20. OBJS = usbd.obj \
  21. urb.obj \
  22. device.obj \
  23. service.obj \
  24. config.obj \
  25. dbgsrvic.obj
  26. !include ..\..\..\..\dev\master.mk
  27. INCLUDE = $(SRCDIR);$(SRCDIR)\..\inc;$(INCLUDE);$(ROOT)\DEV\SDK\INC
  28. CFLAGS = $(CFLAGS) -DPAGE_CODE -DOSR21_COMPAT
  29. !IF "$(VERDIR)" == "maxdebug" || "$(VERDIR)" == "MAXDEBUG"
  30. CFLAGS = $(CFLAGS:-nologo=) -DMAX_DEBUG
  31. !ENDIF