aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2015-12-23 12:07:50 +0100
committerDaniel Stenberg <daniel@haxx.se>2015-12-23 12:07:50 +0100
commitbfe6f1f78827453e5652808c33b3759098ae5a4d (patch)
tree5ccaf3b5c24f7691e7c0b56c46441d955bbdab80 /src/Makefile.am
parenta464f33843ee11b0bf8cfcfd927b9a3c37b2aed0 (diff)
Makefile.inc: s/curl_SOURCES/CURL_FILES
This allows the root Makefile.am to include the Makefile.inc without causing automake to warn on it (variables named *_SOURCES are magic). curl_SOURCES is then instead assigned properly in src/Makefile.am only. Closes #577
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index f4bc6c9a2..c1280f7b8 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -53,6 +53,9 @@ endif
include Makefile.inc
+# CURL_FILES comes from Makefile.inc
+curl_SOURCES = $(CURL_FILES)
+
# This might hold -Werror
CFLAGS += @CURL_CFLAG_EXTRAS@