PROGS=Dumphosts
LDFLAGS=-lm
.SUFFIXES: .sal

all: $(PROGS)

.sal:
	sal -n $< -o $@

clean:
	rm -f $(PROGS)
	cd Convert; make clean

