fis-gtm/sr_unix/gt_cc.csh

40 lines
1.1 KiB
Tcsh

#################################################################
# #
# Copyright 2001, 2010 Fidelity Information Services, Inc #
# #
# This source code contains the intellectual property #
# of its copyright holder(s), and is made available #
# under a license. If you do not know the terms of #
# the license, please stop and do not read further. #
# #
#################################################################
#
###########################################################################################
#
# gt_cc.csh - Compile C programs from $gtm_src
#
# Arguments
# A list of C source file names (minus directory paths).
#
# Output
# Object code in file with suffix ".o".
#
# Environment
# comlist_gt_cc current C compiler alias set by comlist.csh for appropriate
# version and image type
#
###########################################################################################
if ( $?comlist_gt_cc == "0" ) then
echo "gt_cc-E-nocomlist: gt_cc.csh should only be invoked from within comlist.csh"
exit 1
endif
alias gt_cc_local "$comlist_gt_cc"
foreach i ($*)
echo $i
gt_cc_local $i
end