#!/bin/sh

HDR=$1
LIB=$2

rm -f regex.h
ln -s $HDR regex.h
gcc -I. -g -o backref backref.c $LIB
