# 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)