From 01c309e186b3f1055d56211d4074f451bf5282bf Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Thu, 29 Jul 2010 09:06:55 +0200 Subject: Added a comment with an alternate idea to avoid the backslash line contination character. --- src/Makefile.inc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/Makefile.inc') diff --git a/src/Makefile.inc b/src/Makefile.inc index 9faf89d3d..825bcffd4 100644 --- a/src/Makefile.inc +++ b/src/Makefile.inc @@ -1,4 +1,11 @@ # ./src/Makefile.inc +# Using the backslash as line continuation character might be problematic +# with some make flavours, as Watcom's wmake showed us already. If we +# ever want to change this in a portable manner then we should consider +# this idea (posted to the libcurl list by Adam Kellas): +# CSRC1 = file1.c file2.c file3.c +# CSRC2 = file4.c file5.c file6.c +# CSOURCES = $(CSRC1) $(CSRC2) # libcurl has sources that provide functions named curlx_* that aren't part of # the official API, but we re-use the code here to avoid duplication. @@ -16,4 +23,3 @@ CURL_HFILES = hugehelp.h setup.h config-win32.h config-mac.h \ curl_SOURCES = $(CURL_SOURCES) $(CURLX_ONES) $(CURL_HFILES) - -- cgit v1.2.3