#!/bin/sh

if [ $# -ne 0 ]
then
	echo "usage: nrmdepends"
fi

nmakefiles_out

awk -f $NEWLINKBASE/bin/rmdepends.awk $NEWLINKBASE/src/basic/Make.basic > d
mv d $NEWLINKBASE/src/basic/Make.basic

awk -f $NEWLINKBASE/bin/rmdepends.awk $NEWLINKBASE/src/graph/Make.graph > d
mv d  $NEWLINKBASE/src/graph/Make.graph

awk -f $NEWLINKBASE/bin/rmdepends.awk $NEWLINKBASE/src/userobj/Make.userobj > d
mv d  $NEWLINKBASE/src/userobj/Make.userobj

awk -f $NEWLINKBASE/bin/rmdepends.awk $NEWLINKBASE/src/algorithm/Make.algorithm > d
mv d  $NEWLINKBASE/src/algorithm/Make.algorithm

awk -f $NEWLINKBASE/bin/rmdepends.awk $NEWLINKBASE/src/generator/Make.generator > d
mv d  $NEWLINKBASE/src/generator/Make.generator

awk -f $NEWLINKBASE/bin/rmdepends.awk $NEWLINKBASE/src/layout/Make.layout > d
mv d  $NEWLINKBASE/src/layout/Make.layout

awk -f $NEWLINKBASE/bin/rmdepends.awk $NEWLINKBASE/src/stkWrapper/Make.stkWrapper > d
mv d  $NEWLINKBASE/src/stkWrapper/Make.stkWrapper

awk -f $NEWLINKBASE/bin/rmdepends.awk $NEWLINKBASE/src/wrappers/Make.wrappers > d
mv d  $NEWLINKBASE/src/wrappers/Make.wrappers

nmakefiles_in
