Mike Watters - 2009-08-08

Here is what I wound up doing, it is a little more elegent the the fgrep
It also corrects the multiple entries in the *.prototype-$(ISA) files

MY_CLASSES = CSWsendmail.i.sol8 CSWsendmail.i.sol9 CSWsendmail.i.sol10

PROTOTYPE_FILTER = awk \
'$$$$2 ~/i.sol8/ { next } \ $$$$2 ~/i.sol9/ { next } \ $$$$2 ~/i.sol10/ { next } \
$$$$3 ~/\/init\.d\/cswsendmail$$$$/ {$$$$2 = "cswinitsmf"} \ $$$$3 ~/sol8\./ { $$$$2 = "sol8" } \
$$$$3 ~/sol9\./ { $$$$2 = "sol9" } \ $$$$3 ~/sol10\./ { $$$$2 = "sol10" } \ $$$$3 ~/\/sol[0-9]*\.sendmail$$$$/ { $$$$4 = "2755" } \ { print } \ END { { print "i i.sol8=CSWsendmail.i.sol8" } \ { print "i i.sol9=CSWsendmail.i.sol9" } \ { print "i i.sol10=CSWsendmail.i.sol10" } } '