awips2/ncep/gov.noaa.nws.ncep.ui.nsharp/nsharp_c/so_new.csh
Roger Ferrel 7427aeaf29 Issue #181
Changes from January ncep_cave

Former-commit-id: 6a878c3c5f400c53d39d7920c0619362aaafb946
2012-01-26 09:26:07 -06:00

79 lines
2.4 KiB
Tcsh
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/csh
#
# 1. Create a Java project and source folder....
#
# 2. Configure build path (see M. Li's lecture note):
# Right click the working project -> Build Path -> Configure build path
# -> Libraries -> Add JARs -> com.sun.jna jna.jar
#
# 3. cp /usr/lib/gcc/i386-redhat-linux/3.4.6/libg2c.so locally, e.g.,
# $AWIPS2/lib/so
#
# 4. Use this script to create a shared library (.so)
#
# 5. Deploy the SL and add the path, e.g., AWIPS2/lib, to LD_LIBRARY_PATH
# (in ~/.alias)
#
$RM *.o libnsharp.so
set myLinkflags = "-L$AWIPS2/lib -shared -Wl,-soname,libnsharp.so -o libnsharp.so"
set myLinktail = "-lg2c -lc $XLIBS -lz -lm"
#
# Set C flags. Include necessary *.h files from application and library functions, e.g., diaglib/dg/*.h
# gdlist/gdlist.h for gdldsp.c. Note that diaglib/dg/*.h has layers of *.h, de.h, dl.h, df.h, dv.h.
#
set myCflags = "$CFLAGS -I$GEMPAK/include -I$GEMPAK/source/programs/gui/nsharp -DDEBUG -c"
#
# Set F flags. Include gemlib/grdcmn for DG library
#
set myFflags = "-I. -I$GEMPAK/include -I$GEMPAK/source/programs/gui/nsharp -fPIC -g -c -Wall -fno-second-underscore"
echo
echo "Cflags and Fflags have been set"
echo " "
#
# Add libraries for gdlist (following gdlist.mk)
#
set myLibs = "$OS_LIB/ginitp_alt.o $OS_LIB/gendp_alt.o $OS_LIB/libsnlist.a $OS_LIB/libsnlib.a $OS_LIB/libsflist.a $OS_LIB/libsflib.a $OS_LIB/libnxmlib.a $OS_LIB/libdiaglib.a $OS_LIB/libgemlib.a $OS_LIB/libprmcnvlib.a $OS_LIB/libgridlib.a $OS_LIB/libgplt.a $OS_LIB/libcgemlib.a $OS_LIB/libdevice.a $OS_LIB/libxwp.a $OS_LIB/libxw.a $OS_LIB/libps.a $OS_LIB/libgn.a $OS_LIB/libgemlib.a $OS_LIB/libnetcdf.a $OS_LIB/libtextlib.a $OS_LIB/libxslt.a $OS_LIB/libxml2.a $OS_LIB/libiconv.a $OS_LIB/libbz2.a"
#
# Compile all C programs
# gcc "$myCflags" *.c"
#
echo "Compiling C program... "
echo " "
$CC $myCflags *.c
#
# Compile all Fortran programs
# g77 "$myFflag *.f"
#
echo "Compiling Fortran program... "
echo " "
$FC $myFflags *.f
#
# Create a shared library
# gcc "$myLinkflags" *.o $OS_LIB/libgdlist.a $myLibs $myLinktail"
#
echo "To create a Shared Library object... "
$CC $myLinkflags *.o $myLibs $myLinktail
set check = `ll -altr libnsharp.so | awk '{print $9}'`
echo " "
if ( $check == "libnsharp.so") then
echo "****** Shared library is created ******\n "
echo " "
mv libnsharp.so $DEV_BASE/workspace/build.cave/static/common/cave/caveEnvironment/lib
else
echo "****** Houston, we got problems ******\n "
endif