#!/bin/sh

# ocamldep outputs dependencies which assume that the compiled files
# will be in the same directory as the source files.
# This assumption is wrong and we rely on GNU make vpath to locate
# the source files.
# Remove the directory component of ocamldep output.

ocamldep $* | sed -e 's/[._a-zA-Z0-9]*\///g'
