]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tests/server/Makefile.inc: cleanup
authorDaniel Stenberg <daniel@haxx.se>
Tue, 13 May 2025 10:05:39 +0000 (12:05 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 13 May 2025 12:19:01 +0000 (14:19 +0200)
- drop curl_ctype.h as it is not used by test servers
- list all curlx files in the CURLX_* lists
- sort the lists alphabetically

Closes #17339

tests/server/Makefile.inc

index f80d4eab566ab5d8030feaf0364d8b06df389be2..1859f651d3c51335633ec9857ed5cba0ac10e4ce 100644 (file)
@@ -29,34 +29,33 @@ MEMDEBUG = \
   ../../lib/memdebug.h
 
 CURLX_SRCS = \
+  ../../lib/curlx/base64.c \
+  ../../lib/curlx/multibyte.c \
   ../../lib/curlx/nonblock.c \
   ../../lib/curlx/strparse.c \
-  ../../lib/curlx/warnless.c \
   ../../lib/curlx/timediff.c \
   ../../lib/curlx/timeval.c \
-  ../../lib/curlx/multibyte.c \
-  ../../lib/curlx/version_win32.c
+  ../../lib/curlx/version_win32.c \
+  ../../lib/curlx/warnless.c \
+  ../../lib/curlx/winapi.c
 
 CURLX_HDRS = \
+  ../../lib/curlx/base64.h \
   ../../lib/curlx/curlx.h \
-  ../../lib/curl_ctype.h \
+  ../../lib/curlx/multibyte.h \
   ../../lib/curlx/nonblock.h \
-  ../../lib/curlx/warnless.h \
   ../../lib/curlx/timediff.h \
   ../../lib/curlx/timeval.h \
-  ../../lib/curlx/multibyte.h \
-  ../../lib/curlx/version_win32.h
+  ../../lib/curlx/version_win32.h \
+  ../../lib/curlx/warnless.h \
+  ../../lib/curlx/winapi.h
 
 UTIL = \
   getpart.c \
   getpart.h \
   util.c \
   util.h \
-  server_setup.h \
-  ../../lib/curlx/base64.c \
-  ../../lib/curlx/base64.h \
-  ../../lib/curlx/winapi.c \
-  ../../lib/curlx/winapi.h
+  server_setup.h
 
 FIRSTFILES = \
   first.c \