Skip to content

Commit 3adf10d

Browse files
committed
Deletes htmlify targets refs #2996
1 parent 1470182 commit 3adf10d

File tree

1 file changed

+3
-24
lines changed

1 file changed

+3
-24
lines changed

Makefile

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -9,41 +9,24 @@ SELINUX_OPT := $(shell [ $(DOCKER_SELINUX_LABEL) -eq 1 ] && echo "$(COL
99
LANG_POD6_SOURCE := $(wildcard doc/Language/*.pod6)
1010
# Managing of the language index page
1111
USE_CATEGORIES := True
12-
# Value of disambiguation flag in htmlify
13-
DISAMBIGUATE := True
1412

1513
.PHONY: html init-highlights html-nohighlight sparse assets webdev-build \
1614
bigpage test xtest ctest help run clean-html clean-images \
1715
clean-search clean test-links push \
1816
gen-pod6-source clean-build \
19-
docker-image docker-htmlify docker-test docker-xtest docker-ctest docker-testall docker-run
17+
docker-image docker-test docker-xtest docker-ctest docker-testall docker-run
2018

21-
html: gen-pod6-source bigpage htmlify
22-
23-
htmlify: gen-pod6-source init-highlights assets
24-
perl6 htmlify.p6 --manage=$(USE_CATEGORIES) --disambiguation=$(DISAMBIGUATE)
25-
26-
gen-pod6-source: $(LANG_POD6_SOURCE) doc/Language/00-POD6-CONTROL
27-
perl6 util/manage-page-order.p6 update --manage=$(USE_CATEGORIES)
19+
html: gen-pod6-source bigpage
2820

2921
init-highlights:
3022
ATOMDIR="./highlights/atom-language-perl6"; \
3123
if [ -d "$$ATOMDIR" ]; then (cd "$$ATOMDIR" && git pull); \
3224
else git clone https://github.com/perl6/atom-language-perl6 "$$ATOMDIR"; \
3325
fi; cd highlights; npm install .; npm rebuild
3426

35-
html-nohighlight: gen-pod6-source
36-
perl6 htmlify.p6 --no-highlight --disambiguation=$(DISAMBIGUATE)
37-
38-
sparse:
39-
perl6 htmlify.p6 --no-highlight --sparse=10 --disambiguation=$(DISAMBIGUATE)
40-
4127
assets:
4228
./app.pl assets
4329

44-
webdev-build:
45-
perl6 htmlify.p6 --no-highlight --sparse=200 --disambiguation=$(DISAMBIGUATE)
46-
4730
bigpage: gen-pod6-source
4831
pod2onepage --html -v --source-path=./build --exclude=404.pod6 > html/perl6.html
4932

@@ -78,7 +61,7 @@ help:
7861
@echo " ctest: run the test suite, content tests only"
7962
@echo " run: run the development webserver"
8063
@echo "docker-image: build Docker image from Dockerfile"
81-
@echo "docker-htmlify: generate the HTML documentation (in container)"
64+
8265
@echo "docker-test: run the test suite (in container)"
8366
@echo "docker-xtest: run the test suite, including extra tests (in container)"
8467
@echo "docker-ctest: run the test suite, content tests only (in container)"
@@ -94,10 +77,6 @@ run:
9477
docker-image:
9578
docker build -t $(DOCKER_IMAGE_NAME) .
9679

97-
docker-htmlify: docker-image docker-test
98-
docker run --rm -it -v $(REPO_PATH):/perl6/doc/$(SELINUX_OPT) $(DOCKER_IMAGE_NAME) \
99-
/bin/bash -c 'make html'
100-
10180
docker-test: docker-image
10281
docker run --rm -it -v $(REPO_PATH):/perl6/doc/$(SELINUX_OPT) $(DOCKER_IMAGE_NAME) \
10382
/bin/bash -c 'make test'

0 commit comments

Comments
 (0)