#
# makefile for cls, clf, cls2, clf2
#
# Jerry Peek, Northeast Parallel Architectures Center, Syracuse, NY
# jerryp@amax.npac.syr.edu
# (315)423-1722
#

# REMOVE ANY EXISTING LINK BECAUSE ln -s WON'T OVERWRITE EXISTING SYMLINK.
# THEN, TEST LINK TO BE SURE IT POINTS AT SOMETHING:
MAKELINK = -rm -f $@ ;\
	ln -s $? $@ ;\
	test -f $@

all: clf cls clf2 cls2

clf clf2 cls2: cls
	$(MAKELINK)
