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.

42 lines
1.0 KiB

  1. #############################################################################
  2. #
  3. # Microsoft Confidential
  4. # Copyright (C) Microsoft Corporation 1997,1998
  5. # All Rights Reserved.
  6. #
  7. # MAKEFILE for HIDSERV directory
  8. #
  9. #############################################################################
  10. !IFDEF MSSDK_BUILD
  11. !include <win32.mak>
  12. cflags=$(cflags) -DDBG
  13. all: hidserv.exe
  14. .c.obj:
  15. $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  16. hidserv.res: hidserv.rc hidaudio.h
  17. $(rc) -r hidserv.rc
  18. hidserv.exe: hidserv.res \
  19. hidserv.obj hidaudio.obj mixer.obj report.obj pnp.obj list.obj
  20. $(link) $(linkdebug) $(guiflags) -machine:$(CPU) -out:$*.exe $** $(guilibs) hid.lib setupapi.lib shell32.lib
  21. !ELSE
  22. #
  23. # DO NOT EDIT THIS FILE!!! Edit .\sources. if you want to add a new source
  24. # file to this component. This file merely indirects to the real make file
  25. # that is shared by all the driver components of the Windows NT DDK
  26. #
  27. !INCLUDE $(NTMAKEENV)\makefile.def
  28. !ENDIF