mirror of
https://github.com/curl/curl.git
synced 2026-04-15 13:15:56 +08:00
- unit tests need no tool code as they are libcurl unit tests - unit test 1621 is now tunit test 1621 instead, as it tests tool code - build unit tests with BUILDING_LIBCURL as they pretent to be libcurl Closes #17259
39 lines
1.3 KiB
Makefile
39 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
|
|
#
|
|
###########################################################################
|
|
|
|
# these files are used in every single unit test program
|
|
|
|
FIRSTFILES = ../libtest/first.c
|
|
|
|
TOOLFILES = $(FIRSTFILES)
|
|
|
|
# These are all tool unit test programs
|
|
TOOLPROGS = tool1394 tool1604 tool1621
|
|
|
|
tool1394_SOURCES = tool1394.c $(TOOLFILES)
|
|
|
|
tool1604_SOURCES = tool1604.c $(TOOLFILES)
|
|
|
|
tool1621_SOURCES = tool1621.c $(TOOLFILES)
|