16 lines
232 B
Bash
Executable File
16 lines
232 B
Bash
Executable File
#!/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
|
|
|
|
|