ADAPTOR_FLAGS = 

ALL = fakul fakul1 fakul2

all : $(ALL)

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

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

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

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