summaryrefslogtreecommitdiff
path: root/support/l2a/Makefile
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /support/l2a/Makefile
Initial commit
Diffstat (limited to 'support/l2a/Makefile')
-rw-r--r--support/l2a/Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/support/l2a/Makefile b/support/l2a/Makefile
new file mode 100644
index 0000000000..9aa6e3d113
--- /dev/null
+++ b/support/l2a/Makefile
@@ -0,0 +1,37 @@
+# Makefile for l2a 27 dec. 1988 [gh]
+#-----------------------------------------------------------------------------
+# Abstract:
+# Filter to detexify texts (handles both tex and latex).
+#
+# Compilation:
+# Tested using a Sun 3/50 and SunOS 3.5. Believed to be portable.
+#-----------------------------------------------------------------------------
+
+OBJ = l2a.o
+SHR = l2a.tex Makefile l2a.l l2a.1
+BINDIR = /local/bin
+MANDIR = /local/man
+
+l2a: $(OBJ)
+ cc -o l2a $(OBJ) -ll
+
+$(OBJ): l2a.l
+
+install:
+ cp l2a $(BINDIR)/l2a
+ cp l2a.1 $(MANDIR)/man1/l2a.1
+
+clean:
+ \rm -f l2a.txt l2a.c lex.yy.c l2a l2a.aux l2a.log $(OBJ) *~
+
+test:
+ \rm -f l2a.txt
+ l2a < l2a.tex > l2a.txt
+
+dvi:
+ latex l2a.tex
+
+shar:
+ shar -a $(SHR) > l2a.shar
+
+# EOF