2020-03-23 21:44:29 +08:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2023-01-02 20:51:48 +08:00
|
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
2020-03-23 21:44:29 +08:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2020-03-23 21:44:29 +08:00
|
|
|
#
|
|
|
|
# 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
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
2020-03-23 21:44:29 +08:00
|
|
|
###########################################################################
|
2018-11-30 23:01:32 +08:00
|
|
|
SUBDIRS = vms
|
2009-05-09 20:08:24 +08:00
|
|
|
|
2023-02-06 06:29:49 +08:00
|
|
|
EXTRA_DIST = README.md \
|
2018-09-24 06:24:02 +08:00
|
|
|
OS400/README.OS400 \
|
2023-04-18 09:04:32 +08:00
|
|
|
OS400/rpg-examples \
|
2018-09-24 06:24:02 +08:00
|
|
|
OS400/ccsidcurl.c \
|
|
|
|
OS400/ccsidcurl.h \
|
2023-08-29 19:32:39 +08:00
|
|
|
OS400/curlcl.c \
|
|
|
|
OS400/curlmain.c \
|
2018-09-24 06:24:02 +08:00
|
|
|
OS400/curl.inc.in \
|
|
|
|
OS400/initscript.sh \
|
2023-07-31 00:04:09 +08:00
|
|
|
OS400/config400.default \
|
2018-09-24 06:24:02 +08:00
|
|
|
OS400/make-include.sh \
|
|
|
|
OS400/make-lib.sh \
|
|
|
|
OS400/make-src.sh \
|
|
|
|
OS400/make-tests.sh \
|
|
|
|
OS400/makefile.sh \
|
|
|
|
OS400/os400sys.c \
|
2023-08-29 19:32:39 +08:00
|
|
|
OS400/os400sys.h \
|
|
|
|
OS400/curl.cmd
|
2020-10-15 16:07:00 +08:00
|
|
|
|
|
|
|
CHECKSRC = $(CS_$(V))
|
|
|
|
CS_0 = @echo " RUN " $@;
|
|
|
|
CS_1 =
|
|
|
|
CS_ = $(CS_0)
|
|
|
|
|
|
|
|
checksrc:
|
2022-03-23 22:26:09 +08:00
|
|
|
$(CHECKSRC)(@PERL@ $(top_srcdir)/scripts/checksrc.pl -D$(srcdir) $(srcdir)/OS400/*.[ch])
|