Made makefile use proper dependency for docs index.md

This commit is contained in:
Daniel Cronqvist 2024-09-04 21:31:07 +02:00
parent 8fd43d95aa
commit b06bbd27c8

View file

@ -2,13 +2,15 @@ test:
dotnet build src/DotTiled.sln dotnet build src/DotTiled.sln
dotnet test src/DotTiled.sln dotnet test src/DotTiled.sln
docs-serve: docs-serve: docs/index.md
docfx docs/docfx.json --serve docfx docs/docfx.json --serve
docs-build: docs-build: docs/index.md
cp README.md docs/index.md
docfx docs/docfx.json docfx docs/docfx.json
docs/index.md:
cp README.md docs/index.md
lint: lint:
dotnet format style --verify-no-changes src/DotTiled.sln dotnet format style --verify-no-changes src/DotTiled.sln
dotnet format analyzers --verify-no-changes src/DotTiled.sln dotnet format analyzers --verify-no-changes src/DotTiled.sln