########################################################## # # Makefile for stl # # Note that this makefile depends on the environment # variable VARKON_ROOT to be set up properly in your # login-file, shell rc-file or elswhere. # VARKON_ROOT is the top directory of your # Varkon-installation. # # (C)Microform AB 1999-11-05 J.Kjellander # ########################################################## RM = rm -f COMPILE = $(VARKON_ROOT)/bin/mbsc LIBDIR = $(VARKON_ROOT)/lib # MBO-files OBJECTS = $(LIBDIR)/stl_in.MBO \ $(LIBDIR)/stl_ina.MBO \ $(LIBDIR)/stl_inb.MBO \ $(LIBDIR)/stl_fnam.MBO \ $(LIBDIR)/stl_out.MBO \ $(LIBDIR)/stl_wfac.MBO # The rule for compiling MBS sources and moving # the MBO-module to the Varkon library $(LIBDIR)/%.MBO : ./%.MBS $(COMPILE) $< mv $*.MBO $(LIBDIR) @echo " " @echo " " @echo " " # Targets distr : $(OBJECTS) clean: $(RM) $(LIBDIR)/stl*.MBO ##########################################################