fixup try odd work-around

This commit is contained in:
Daniel Stenberg 2025-02-28 23:21:52 +01:00
parent 6d6841c5db
commit ec99918e4d
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -57,11 +57,16 @@ CFGSET=true
!ENDIF
DOUBLESPACE=$(subst ',,' ')
SINGLESPACE=$(subst ',,' ')
!INCLUDE "../lib/Makefile.inc"
SRC=$(subst , ,$(CSOURCES))
SRC=$(subst $(DOUBLESPACE),$(SINGLESPACE),$(CSOURCES)))
LIBCURL_OBJS=$(SRC:.c=.obj)
!INCLUDE "../src/Makefile.inc"
CSRC=$(subst $(DOUBLESPACE),$(SINGLESPACE),$(CURL_CFILES)))
CSRC=$(subst , ,$(CURL_CFILES))
CURL_OBJS=$(CSRC:.c=.obj)