Skip to content

Commit 1b4584e

Browse files
committed
Stop using old mantohtml program.
1 parent 6343198 commit 1b4584e

3 files changed

Lines changed: 6 additions & 1241 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
/cups/testtestpage
4444
/cups/testthreads
4545
/cups/tlscheck
46-
/man/mantohtml
4746
/packaging/libcups.list
4847
/scratch
4948
/tools/ippevepcl

man/Makefile

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ test:
4545
#
4646

4747
clean:
48-
$(RM) mantohtml mantohtml.o
4948

5049

5150
#
@@ -105,28 +104,24 @@ uninstall:
105104
# Local programs (not built when cross-compiling...)
106105
#
107106

108-
local: mantohtml
107+
local:
109108

110109

111110
#
112-
# Make html versions of man pages...
111+
# Make html versions of man pages using <https://www.msweet.org/mantohtml>.
113112
#
114113

115-
html: mantohtml
114+
html:
116115
echo Converting man pages to HTML...
117116
for file in $(MAN1); do \
118117
echo " $$file..."; \
119-
./mantohtml $$file >../doc/`basename $$file .1`.html; \
118+
mantohtml $$file >../doc/`basename $$file .1`.html; \
120119
done
121120
for file in $(MAN5); do \
122121
echo " $$file..."; \
123-
./mantohtml $$file >../doc/`basename $$file .5`.html; \
122+
mantohtml $$file >../doc/`basename $$file .5`.html; \
124123
done
125124
for file in $(MAN7); do \
126125
echo " $$file..."; \
127-
./mantohtml $$file >../doc/`basename $$file .7`.html; \
126+
mantohtml $$file >../doc/`basename $$file .7`.html; \
128127
done
129-
130-
mantohtml: mantohtml.o ../cups/libcups.a
131-
$(CC) $(LDFLAGS) $(OPTIM) -o $@ mantohtml.o ../cups/libcups.a $(LIBS)
132-
$(CODE_SIGN) $(CSFLAGS) $@

0 commit comments

Comments
 (0)