# DALIB is directory of its implementation for this machine
#
#

ALL = aa as fl im ir it rd sh st tm

all : $(ALL)

aa: aa.o
	$(LD) -o aa aa.o $(NLIB)

as: as.o
	$(LD) -o as as.o $(NLIB)

fl: fl.o
	$(LD) -o fl fl.o $(NLIB)

im: im.o
	$(LD) -o im im.o $(NLIB)

ir: ir.o
	$(LD) -o ir ir.o $(NLIB)

it: it.o
	$(LD) -o it it.o $(NLIB)

rd: rd.o
	$(LD) -o rd rd.o $(NLIB)

sh: sh.o
	$(LD) -o sh sh.o $(NLIB)

st: st.o
	$(LD) -o st st.o $(NLIB)

tm: tm.o
	$(LD) -o tm tm.o $(NLIB)

include ../make.body
#
clean:
	rm -f *.f $(IM_FILES) $(ALL)
#
