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.

29 lines
889 B

  1. !ifdef NTMAKEENV
  2. all:
  3. clean:
  4. !else
  5. !include ..\..\build.mk
  6. debug_0 retail_0 intern_0: $@.mak
  7. debug_0.mak retail_0.mak intern_0.mak:
  8. @if not exist $(DXROOT)\$(@B)\nul md $(DXROOT)\$(@B)
  9. @if not exist $(DXROOT)\$(@B)\bin\nul md $(DXROOT)\$(@B)\bin
  10. @if not exist $(DXROOT)\$(@B)\lib\nul md $(DXROOT)\$(@B)\lib
  11. @if not exist $(DXROOT)\$(@B)\lib16\nul md $(DXROOT)\$(@B)\lib16
  12. @if not exist $(DXROOT)\$(@B)\inc\nul md $(DXROOT)\$(@B)\inc
  13. @if not exist $(@B)\nul md $(@B)
  14. @cd $(@B)
  15. @nmake -nologo -f ..\$(MAKENAME) DEBUG="$(@B)"
  16. @cd ..
  17. @echo *** Done making $(@B) ***
  18. doc:
  19. $(DEVROOT)\tools\common\autodoc /x EXTERNAL /s dinput.fmt /o dinput.rtf *.w *.c
  20. $(DEVROOT)\tools\common\autodoc /x DDK /s dinput.fmt /o dinputd.rtf *.w *.c
  21. $(DEVROOT)\tools\common\autodoc /s dinput.fmt /o dinputi.rtf *.w *.c
  22. !endif