mirror of
https://github.com/opnsense/src.git
synced 2026-04-12 12:56:47 -04:00
16 lines
340 B
Makefile
16 lines
340 B
Makefile
|
|
# Example of using ptx with latex.
|
|||
|
|
# Copyright (C) 1993 Free Software Foundation, Inc.
|
|||
|
|
# Francois Pinard <pinard@iro.umontreal.ca>, 1993.
|
|||
|
|
|
|||
|
|
PTX = ../ptx
|
|||
|
|
PTX_OPTIONS = -AfTWi.i
|
|||
|
|
|
|||
|
|
try: latex.dvi
|
|||
|
|
xdvi latex
|
|||
|
|
|
|||
|
|
latex.dvi: latex.tex table.tex
|
|||
|
|
latex latex
|
|||
|
|
|
|||
|
|
table.tex: Makefile ../COPYING
|
|||
|
|
$(PTX) $(PTX_OPTIONS) ../COPYING | sed 's///' > table.tex
|