2
0

Makefile 623 B

12345678910111213141516
  1. all: doc-update yaml
  2. # Used to fetch XML doc updates from the C# compiler into the ECMA docs
  3. doc-update: Terminal.Gui/bin/Release/ne461/Terminal.Gui.dll
  4. msbuild /p:Configuration=Release
  5. mdoc update -i Terminal.Gui/bin/Release/net461/Terminal.Gui.xml -o ecmadocs/en Terminal.Gui/bin/Release/net461/Terminal.Gui.dll
  6. Terminal.Gui/bin/Release/ne461/Terminal.Gui.dll:
  7. (cd Terminal.Gui)
  8. msbuild /p:Configuration=Release
  9. yaml:
  10. -rm ecmadocs/en/ns-.xml
  11. mono /cvs/ECMA2Yaml/ECMA2Yaml/ECMA2Yaml/bin/Debug/ECMA2Yaml.exe --source=`pwd`/ecmadocs/en --output=`pwd`/docfx/api
  12. (cd docfx; mono ~/Downloads/docfx/docfx.exe build)