# Makefile for VisKProg base programs. Since all these programs are simple
# c-programs, I thought that there is no need for use of autoconf/automake

# (c) Christoph Pinkel, 1999

all:
	cat ./README
	cd translators && make all
	cd scripts && make all
	cd doc && make all
	cd Data && make all

clean:
	cd translators && make clean
	cd scripts && make clean
	cd doc && make clean
	cd Data && make clean

install:
	cd translators && make install
	cd scripts && make install
	cd doc && make install
	cd Data && make install
