Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixup dvi and html builds in progman #307

Merged
merged 4 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup latex2html invocation
  • Loading branch information
evaleev committed Dec 19, 2023
commit dfc15498bb333e48e38961fc9f766303d8fbaf2a
4 changes: 3 additions & 1 deletion doc/MakeRules.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ default:: $(TARGET)

install:: install_target

install_target:: default
install_target:: $(TARGET)
$(INSTALL) $(INSTALLDIROPT) $(DESTDIR)$(docdir)
$(LTINST) $(INSTALL) $(INSTALLDOCOPT) $(TARGET) $(DESTDIR)$(docdir)

Expand All @@ -18,3 +18,5 @@ targetclean:: clean

realclean:: clean
-rm -f $(TEXGARBAGE)

.PHONY: dvi html pdf ps install_target default install clean distclean targetclean realclean
4 changes: 2 additions & 2 deletions doc/progman/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ install-dvi:: dvi
TEXINPUTS=$(TEXINPUTS) $(LATEX) $<

ifdef LATEX2HTML
html:: dvi
$(LATEX2HTML) $(TARGETNAME)
html:: $(SRCDIR)/$(TARGETNAME).tex
$(LATEX2HTML) $<
endif

endif
Expand Down