1
0

move the scripts to internal

This commit is contained in:
Arpad Ryszka 2025-10-07 03:06:53 +02:00
parent f6f9b88411
commit 8c59c453de
3 changed files with 7 additions and 7 deletions

View File

@ -20,25 +20,25 @@ promote-to-tags: tag/promote.gen.go
go fmt tag/* go fmt tag/*
tag/block.gen.go: $(SOURCES) tag.block.txt tag/block.gen.go: $(SOURCES) tag.block.txt
go run script/generate-tags.go < tag.block.txt > tag/block.gen.go go run internal/script/generate-tags.go < tag.block.txt > tag/block.gen.go
tag/inline.gen.go: $(SOURCES) tag.inline.txt tag/inline.gen.go: $(SOURCES) tag.inline.txt
go run script/generate-tags.go Inline < tag.inline.txt > tag/inline.gen.go go run internal/script/generate-tags.go Inline < tag.inline.txt > tag/inline.gen.go
tag/inlinechildren.gen.go: $(SOURCES) tag.inlinechildren.txt tag/inlinechildren.gen.go: $(SOURCES) tag.inlinechildren.txt
go run script/generate-tags.go InlineChildren < tag.inlinechildren.txt > tag/inlinechildren.gen.go go run internal/script/generate-tags.go InlineChildren < tag.inlinechildren.txt > tag/inlinechildren.gen.go
tag/void.block.gen.go: $(SOURCES) tag.void.block.txt tag/void.block.gen.go: $(SOURCES) tag.void.block.txt
go run script/generate-tags.go Void < tag.void.block.txt > tag/void.block.gen.go go run internal/script/generate-tags.go Void < tag.void.block.txt > tag/void.block.gen.go
tag/void.inline.gen.go: $(SOURCES) tag.void.inline.txt tag/void.inline.gen.go: $(SOURCES) tag.void.inline.txt
go run script/generate-tags.go Void Inline < tag.void.inline.txt > tag/void.inline.gen.go go run internal/script/generate-tags.go Void Inline < tag.void.inline.txt > tag/void.inline.gen.go
tag/script.gen.go: $(SOURCES) tag.script.txt tag/script.gen.go: $(SOURCES) tag.script.txt
go run script/generate-tags.go ScriptContent < tag.script.txt > tag/script.gen.go go run internal/script/generate-tags.go ScriptContent < tag.script.txt > tag/script.gen.go
tag/promote.gen.go: $(SOURCES) promote-to-tags.txt tag/promote.gen.go: $(SOURCES) promote-to-tags.txt
go run script/promote-to-tags.go < promote-to-tags.txt > tag/promote.gen.go go run internal/script/promote-to-tags.go < promote-to-tags.txt > tag/promote.gen.go
fmt: $(SOURCES) tags fmt: $(SOURCES) tags
go fmt ./... go fmt ./...