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.

30 lines
721 B

  1. ###############################################################################
  2. #
  3. # Microsoft Confidential
  4. # Copyright (C) Microsoft Corporation 1997
  5. # All Rights Reserved.
  6. #
  7. # Makefile for VXDCLNT sample HID Mapper VxD
  8. #
  9. ###############################################################################
  10. ROOT = ..\..\..\..\..
  11. DEVICE = VXDCLNT
  12. DYNAMIC=DYNAMIC
  13. SRCDIR = ..
  14. IS_32 = TRUE
  15. IS_OEM = TRUE
  16. DEPENDNAME = ..\depend.mk
  17. TARGETS = dev sym
  18. LIBS = vxdwraps.lib
  19. OBJS = vxd.obj vxdclnt.obj read.obj write.obj
  20. !include $(ROOT)\dos\dos386\dos386.mk
  21. INCLUDE = $(SRCDIR);$(INCLUDE);$(ROOT)\wdm\ddk\inc;$(ROOT)\dev\ntddk\inc;$(ROOT)\wdm\input\inc
  22. MFLAGS = $(MFLAGS) -m
  23. CFLAGS = $(CFLAGS) -Gz -Ogaisw -D_X86_=1 -DWIN32
  24.