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.

43 lines
1.2 KiB

  1. #############################################################################
  2. #
  3. # Microsoft Confidential
  4. # Copyright (C) Microsoft Corporation 1995
  5. # All Rights Reserved.
  6. #
  7. # Makefile for sample device
  8. #
  9. ##########################################################################
  10. ROOT = ..\..\..\..\..
  11. MINIPORT = sample
  12. SRCDIR = ..
  13. WANT_C1032 = TRUE
  14. DEPENDNAME = ..\depend.mk
  15. DESCRIPTION = MINI NT USB Driver
  16. VERDIRLIST = maxdebug debug retail
  17. LINK32FLAGS = $(LINK32FLAGS) -PDB:none -debugtype:both
  18. !IF "$(VERDIR)" == "debug" || "$(VERDIR)" == "DEBUG"
  19. LIBSNODEP = ..\..\..\LIB\i386\checked\usbd.lib
  20. !ELSE
  21. LIBSNODEP = ..\..\..\LIB\i386\free\usbd.lib
  22. !ENDIF
  23. OBJS = sample.obj
  24. !include ..\..\..\..\..\dev\master.mk
  25. INCLUDE = $(SRCDIR);$(SRCDIR)\..\..\inc;$(INCLUDE)
  26. # Use the Cflags from the master.mk file
  27. #CFLAGS = -nologo -c -DPNP_POWER -DNTKERN -D_X86_ -DWIN32
  28. #CFLAGS = $(CFLAGS) -Zel -Zp8 -Gy -W3 -Gz -G4 -Gf -QI6
  29. #!IF "$(VERDIR)" == "debug" || "$(VERDIR)" == "DEBUG"
  30. #CFLAGS = $(CFLAGS) -Od -Oi -Z7 -Oy-
  31. #CFLAGS = $(CFLAGS) -DDEBUG -DDBG=1
  32. #!ELSE
  33. #CFLAGS = $(CFLAGS) -Oy
  34. #!ENDIF