2
0

makefile.sh 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #!/bin/sh
  2. #***************************************************************************
  3. # _ _ ____ _
  4. # Project ___| | | | _ \| |
  5. # / __| | | | |_) | |
  6. # | (__| |_| | _ <| |___
  7. # \___|\___/|_| \_\_____|
  8. #
  9. # Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
  10. #
  11. # This software is licensed as described in the file COPYING, which
  12. # you should have received as part of this distribution. The terms
  13. # are also available at https://curl.se/docs/copyright.html.
  14. #
  15. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  16. # copies of the Software, and permit persons to whom the Software is
  17. # furnished to do so, under the terms of the COPYING file.
  18. #
  19. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  20. # KIND, either express or implied.
  21. #
  22. # SPDX-License-Identifier: curl
  23. #
  24. ###########################################################################
  25. #
  26. # curl compilation script for the OS/400.
  27. #
  28. #
  29. # This is a shell script since make is not a standard component of OS/400.
  30. SCRIPTDIR=`dirname "${0}"`
  31. . "${SCRIPTDIR}/initscript.sh"
  32. cd "${TOPDIR}"
  33. # Create the OS/400 library if it does not exist.
  34. if action_needed "${LIBIFSNAME}"
  35. then CMD="CRTLIB LIB(${TARGETLIB}) TEXT('curl: multiprotocol support API')"
  36. system "${CMD}"
  37. fi
  38. # Create the DOCS source file if it does not exist.
  39. if action_needed "${LIBIFSNAME}/DOCS.FILE"
  40. then CMD="CRTSRCPF FILE(${TARGETLIB}/DOCS) RCDLEN(240)"
  41. CMD="${CMD} CCSID(${TGTCCSID}) TEXT('Documentation texts')"
  42. system "${CMD}"
  43. fi
  44. # Copy some documentation files if needed.
  45. for TEXT in "${TOPDIR}/COPYING" "${SCRIPTDIR}/README.OS400" \
  46. "${TOPDIR}/CHANGES" "${TOPDIR}/docs/THANKS" "${TOPDIR}/docs/FAQ" \
  47. "${TOPDIR}/docs/FEATURES" "${TOPDIR}/docs/SSLCERTS.md" \
  48. "${TOPDIR}/docs/RESOURCES" "${TOPDIR}/docs/VERSIONS.md" \
  49. "${TOPDIR}/docs/HISTORY.md"
  50. do MEMBER="`basename \"${TEXT}\" .OS400`"
  51. MEMBER="`basename \"${MEMBER}\" .md`"
  52. MEMBER="${LIBIFSNAME}/DOCS.FILE/`db2_name \"${MEMBER}\"`.MBR"
  53. [ -e "${TEXT}" ] || continue
  54. if action_needed "${MEMBER}" "${TEXT}"
  55. then CMD="CPY OBJ('${TEXT}') TOOBJ('${MEMBER}') TOCCSID(${TGTCCSID})"
  56. CMD="${CMD} DTAFMT(*TEXT) REPLACE(*YES)"
  57. system "${CMD}"
  58. fi
  59. done
  60. # Build in each directory.
  61. # for SUBDIR in include lib src tests
  62. for SUBDIR in include lib src
  63. do "${SCRIPTDIR}/make-${SUBDIR}.sh"
  64. done