#       Makefile for the occam TA and TB routines for the C library
#
# This file assumes that it is being run within the directory of the sources
# and output files.
#
# The macros OUTNAMEA and OUTNAMEB must be supplied from the command line.
#
#                         19-Nov-90 SRH
#
#                 This file is set up for UNIX.


# these macros are UNIX specific
SWITCH=-
CONCATENATE=cat
INTO=>


# these names must be supplied from the command line
OUTNAMEA=
OUTNAMEB=


all:
	$(MAKE) $(SWITCH)f occlibca OUTNAME=$(OUTNAMEA)
	$(MAKE) $(SWITCH)f occlibcb OUTNAME=$(OUTNAMEB)
	$(CONCATENATE) $(OUTNAMEA) $(OUTNAMEB) $(INTO) occama.lib

