123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #!/bin/sh
- #***************************************************************************
- # _ _ ____ _
- # Project ___| | | | _ \| |
- # / __| | | | |_) | |
- # | (__| |_| | _ <| |___
- # \___|\___/|_| \_\_____|
- #
- # Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
- #
- # This software is licensed as described in the file COPYING, which
- # you should have received as part of this distribution. The terms
- # are also available at https://curl.se/docs/copyright.html.
- #
- # You may opt to use, copy, modify, merge, publish, distribute and/or sell
- # copies of the Software, and permit persons to whom the Software is
- # furnished to do so, under the terms of the COPYING file.
- #
- # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
- # KIND, either express or implied.
- #
- # SPDX-License-Identifier: curl
- #
- ###########################################################################
- #
- # Command line interface tool compilation script for the OS/400.
- SCRIPTDIR=$(dirname "${0}")
- . "${SCRIPTDIR}/initscript.sh"
- cd "${TOPDIR}/src" || exit 1
- # Get source lists.
- # CURL_CFILES are in the current directory.
- # CURLX_CFILES are in the lib directory and need to be recompiled because
- # some function names change using macros.
- get_make_vars Makefile.inc
- # Compile the sources into modules.
- # shellcheck disable=SC2034
- LINK=
- MODULES=
- # shellcheck disable=SC2034
- INCLUDES="'${TOPDIR}/lib'"
- for SRC in ${CURLX_CFILES}
- do MODULE=$(db2_name "${SRC}")
- MODULE=$(db2_name "X${MODULE}")
- make_module "${MODULE}" "${SRC}"
- done
- for SRC in ${CURL_CFILES}
- do MODULE=$(db2_name "${SRC}")
- make_module "${MODULE}" "${SRC}"
- done
- # Link modules into program.
- MODULES="$(echo "${MODULES}" | sed "s/[^ ][^ ]*/${TARGETLIB}\/&/g")"
- CMD="CRTPGM PGM(${TARGETLIB}/${CURLPGM})"
- CMD="${CMD} ENTMOD(${TARGETLIB}/CURLMAIN)"
- CMD="${CMD} MODULE(${MODULES})"
- CMD="${CMD} BNDSRVPGM(${TARGETLIB}/${SRVPGM} QADRTTS)"
- CMD="${CMD} TGTRLS(${TGTRLS})"
- CLcommand "${CMD}"
- # Create the IFS command.
- IFSBIN="${IFSDIR}/bin"
- if action_needed "${IFSBIN}"
- then mkdir -p "${IFSBIN}"
- fi
- rm -f "${IFSBIN}/curl"
- ln -s "/QSYS.LIB/${TARGETLIB}.LIB/${CURLPGM}.PGM" "${IFSBIN}/curl"
- # Create the CL interface program.
- if action_needed "${LIBIFSNAME}/CURLCL.PGM" "${SCRIPTDIR}/curlcl.c"
- then CMD="CRTBNDC PGM(${TARGETLIB}/${CURLCLI})"
- CMD="${CMD} SRCSTMF('${SCRIPTDIR}/curlcl.c')"
- CMD="${CMD} DEFINE('CURLPGM=\"${CURLPGM}\"')"
- CMD="${CMD} TGTCCSID(${TGTCCSID})"
- CLcommand "${CMD}"
- fi
- # Create the CL command.
- if action_needed "${LIBIFSNAME}/${CURLCMD}.CMD" "${SCRIPTDIR}/curl.cmd"
- then CMD="CRTCMD CMD(${TARGETLIB}/${CURLCMD}) PGM(${TARGETLIB}/${CURLCLI})"
- CMD="${CMD} SRCSTMF('${SCRIPTDIR}/curl.cmd')"
- CLcommand "${CMD}"
- fi
|