#!/bin/sh
# use this to bootstrap your Makefile if it gets corrupted in some way.
if [ ! -f ../config/config.h ]
then
  echo creating your config.h out of your config-dist
  cp ../config/config-dist ../config/config.h
fi
rm -f Makefile.my
/usr/bin/cpp -P -I../config -I../src/hdrs  -DMK_TOPDIR Makefile.cpp |cat -s >Makefile.my
make -f Makefile.my Makefile
rm -f Makefile.my
