aboutsummaryrefslogtreecommitdiff
path: root/lib/Makefile.inc
diff options
context:
space:
mode:
authorGuenter Knauf <lists@gknw.net>2010-07-29 09:06:55 +0200
committerGuenter Knauf <lists@gknw.net>2010-07-29 09:06:55 +0200
commit01c309e186b3f1055d56211d4074f451bf5282bf (patch)
tree6c9a95419830eab94565ef9ff3222fdc1971af88 /lib/Makefile.inc
parentd873c820bd63247eb4fffcc3958d8c164b4c077e (diff)
Added a comment with an alternate idea to avoid the backslash line contination character.
Diffstat (limited to 'lib/Makefile.inc')
-rw-r--r--lib/Makefile.inc7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/Makefile.inc b/lib/Makefile.inc
index 328e57a4c..17e2d36e7 100644
--- a/lib/Makefile.inc
+++ b/lib/Makefile.inc
@@ -1,4 +1,11 @@
# ./lib/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)
CSOURCES = file.c timeval.c base64.c hostip.c progress.c formdata.c \
cookie.c http.c sendf.c ftp.c url.c dict.c if2ip.c speedcheck.c \