diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-05-21 22:51:03 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-05-21 23:11:51 +0100 |
commit | e8b7431305bf5b75d8d7a76ba6b639f12b0136ee (patch) | |
tree | 764de65db183861e5c4a729945c69fe48a4832f2 /src/Makefile.m32 | |
parent | ddf47196945d444cbf7e297251ddc3768ea79dd5 (diff) | |
download | curl-e8b7431305bf5b75d8d7a76ba6b639f12b0136ee.tar.gz |
build: Renamed CURLX_ONES file list definition to CURLX_CFILES
Renamed the CURLX_ONES file list definition in order to a) try and be
consistent with other file lists and b) to allow for the addition of
the curlx header files, which will assist with Visual Studio project
files generation rather than hard coding those files.
Diffstat (limited to 'src/Makefile.m32')
-rw-r--r-- | src/Makefile.m32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.m32 b/src/Makefile.m32 index b4b1b0b60..1c22dd074 100644 --- a/src/Makefile.m32 +++ b/src/Makefile.m32 @@ -287,7 +287,7 @@ include Makefile.inc curl_PROGRAMS = curl.exe curl_OBJECTS := $(patsubst %.c,%.o,$(strip $(CURL_CFILES))) -curlx_OBJECTS := $(patsubst %.c,%.o,$(notdir $(strip $(CURLX_ONES)))) +curlx_OBJECTS := $(patsubst %.c,%.o,$(notdir $(strip $(CURLX_CFILES)))) ifdef DYN curl_OBJECTS += $(curlx_OBJECTS) vpath %.c $(PROOT)/lib |