#!/bin/sh 
#
# Atria pre-C++ compilation script - removes .o file, and 
# target-specific defmap directory and file, if necessary.
# 
# atria_pre_cxxc [targetname] 
#
TARGET=$1

rm -f ${TARGET}.o 
rm -rf ${TARGET}.ptrep 

exit 0 


