summaryrefslogtreecommitdiff
path: root/support/mctex/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'support/mctex/Makefile')
-rw-r--r--support/mctex/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/support/mctex/Makefile b/support/mctex/Makefile
new file mode 100644
index 0000000000..cc65ffb6e2
--- /dev/null
+++ b/support/mctex/Makefile
@@ -0,0 +1,23 @@
+
+
+# update is invoked by the vaxima Makefile when vaxima is made
+CMPLR=mc
+# mc is a shell script also supplied in this directory
+OBJS = tex.o
+OBJDIR = ../../obj
+
+.SUFFIXES:
+.SUFFIXES: .o .lsp
+.lsp.o:
+ ${CMPLR} $<
+
+update: $(OBJS)
+ @echo latex updated
+
+install: update
+ chmod 0644 $(OBJS)
+ mv $(OBJS) $(OBJDIR)
+ @echo latex installed
+
+clean:
+ rm -f $(OBJS)