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.

29 lines
677 B

  1. # Copyright (c) Microsoft Corporation. All rights reserved.
  2. OUTPUT_HDRS=$(O)\dsound.h $(O)\dsoundp.h $(O)\dsconf.h $(O)\dsconfp.h
  3. dsound: $(OUTPUT_HDRS)
  4. clean: cleansrc
  5. cleansrc:
  6. del $(OUTPUT_HDRS)
  7. #
  8. # dsound.h, dsoundp.h, dsconf.h, dsprv.h
  9. #
  10. # NOTE: dsprv.h should be renamed dsconf.h, and all clients
  11. # should use it directly rather than local copies of dsprv.h
  12. #
  13. $(O)\dsound.h : dsound.x
  14. hsplit -o $@ nul -bt2 BEGIN_MSINTERNAL END_MSINTERNAL -c @@ $?
  15. $(O)\dsoundp.h: dsound.x
  16. copy $? $@
  17. $(O)\dsconf.h : dsconf.x
  18. hsplit -o $@ nul -bt2 BEGIN_MSINTERNAL END_MSINTERNAL -c @@ $?
  19. $(O)\dsconfp.h: dsconf.x
  20. copy $? $@