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.

36 lines
1.1 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 = HIDPARSE
  12. SRCDIR = ..
  13. WANT_C1032 = TRUE
  14. DEPENDNAME = ..\depend.mk
  15. DESCRIPTION = MINI NT HID PARSER
  16. VERDIRLIST = maxdebug debug retail
  17. MINIPORTDEF = TRUE
  18. LINK32FLAGS = $(LINK32FLAGS) -PDB:none -debugtype:both
  19. OBJS = descript.obj hidparse.obj query.obj trnslate.obj
  20. !include ..\..\..\..\dev\master.mk
  21. INCLUDE = $(SRCDIR);$(SRCDIR)\..\inc;$(SRCDIR)\..\..\ddk\inc;$(INCLUDE)
  22. CFLAGS = -nologo -c -DPNP_POWER -DNTKERN -D_X86_ -DWIN32
  23. CFLAGS = $(CFLAGS) -Zel -Zp8 -Gy -W3 -Gz -G4 -Gf
  24. !IF "$(VERDIR)" == "debug" || "$(VERDIR)" == "DEBUG"
  25. CFLAGS = $(CFLAGS) -Od -Oi -Z7 -Oy- -W3
  26. CFLAGS = $(CFLAGS) -DDEBUG -DDBG=1
  27. !ELSE
  28. CFLAGS = $(CFLAGS) -Oy
  29. !ENDIF