mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 17:39:27 +02:00
16 lines
330 B
Makefile
16 lines
330 B
Makefile
#
|
|
# Create HTML using hevea tex 2 html conversion
|
|
#
|
|
|
|
%.html: %.tex fpc-hevea.tex
|
|
$(HEVEA) $(HEVEAOPTS) $<
|
|
|
|
user: $(INCLUDES) user.html
|
|
units: $(INCLUDES) units.html
|
|
prog: $(INCLUDES) prog.html
|
|
onechap: $(INCLUDES) onechap.html
|
|
ref: $(INCLUDES) ref.html
|
|
fpdoc: $(INCLUDES) fpdoc.html
|
|
|
|
html: $(INCLUDES) $(addsuffix .html,$(HTML))
|