# (c) Christoph Pinkel, 1999
BIN_DIR		= /usr/bin

all:
	cc vkModuleTranslator.c -o vkModuleTranslator
	echo "Finished in function-translator."

clean:
	rm -f vkModuleTranslator
	rm -f *.o

install:
	cp -f vkModuleTranslator $(BIN_DIR)
