mirror of
https://github.com/curl/curl.git
synced 2026-08-05 01:46:19 +03:00
Derive it from `$BUNDLE` instead. autotools seems to be already relying on `$BUNDLE_SRC` being equal to `$BUNDLE.c`. (I haven't realized this beforeaaebb45f58.) Also drop redundant `nodist_<target>_SOURCE` lines in tunits and units. Follow-up toaaebb45f58#17688 Follow-up to2c27a67daa#17590 Closes #17692
38 lines
1.3 KiB
Makefile
38 lines
1.3 KiB
Makefile
#***************************************************************************
|
|
# _ _ ____ _
|
|
# 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
|
|
#
|
|
###########################################################################
|
|
# Shared between CMakeLists.txt and Makefile.am
|
|
|
|
BUNDLE = tunits
|
|
|
|
# Files referenced from the bundle source
|
|
FIRSTFILES = ../libtest/first.c ../libtest/first.h
|
|
|
|
# Common files used by test programs
|
|
UTILS = ../unit/curlcheck.h
|
|
|
|
# All tool unit test programs
|
|
TESTFILES = \
|
|
tool1394.c \
|
|
tool1604.c \
|
|
tool1621.c
|