mdtoc/Makefile

18 lines
245 B
Makefile
Raw Normal View History

2024-04-29 09:35:02 +02:00
all:
2024-05-12 17:21:50 +02:00
go build .
run:
go run . test_files/test.md
test:
2024-05-12 17:21:50 +02:00
go run . test_files/test.md
go run . test_files/README.md
go run . test_files/weird_headers.md
go run . test_files/audio.md
install:
cp -v mdtoc /usr/local/bin/.
clean:
2024-05-12 17:21:50 +02:00
go clean