#!/bin/sh
#
# Generate EPS files of the build dependency graph.
#
# Depends on dot(1) from GraphViz.

if [ $# -ne 1 ] ; then
	echo "Usage: $0 uip/Makefile.in" >&2
	exit 1
fi

awk -f makedeps2dot "$1" | dot -Teps -o deps_`date +%F`.eps
