summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2013-03-11 17:50:12 +0000
committerVincent Sanders <vince@netsurf-browser.org>2013-03-11 17:53:52 +0000
commit95e726c7cc21c52829548340142d266cdb8f1123 (patch)
tree35242bf31d2e00858124f568b06c8ff51290416c /utils
parent41e4928e25039119b97035640cf97b1949a129d4 (diff)
downloadnetsurf-95e726c7cc21c52829548340142d266cdb8f1123.tar.gz
netsurf-95e726c7cc21c52829548340142d266cdb8f1123.tar.bz2
split sources lists out to their subdirectories as first step towards using core buildsystem
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile7
-rw-r--r--utils/http/Makefile6
2 files changed, 13 insertions, 0 deletions
diff --git a/utils/Makefile b/utils/Makefile
new file mode 100644
index 000000000..ed34e9557
--- /dev/null
+++ b/utils/Makefile
@@ -0,0 +1,7 @@
+# utils sources
+
+S_UTILS := base64.c corestrings.c filename.c filepath.c hashtable.c \
+ libdom.c locale.c log.c messages.c nsurl.c talloc.c url.c \
+ utf8.c utils.c useragent.c
+
+S_UTILS := $(addprefix utils/,$(S_UTILS)) \ No newline at end of file
diff --git a/utils/http/Makefile b/utils/http/Makefile
new file mode 100644
index 000000000..198588bd4
--- /dev/null
+++ b/utils/http/Makefile
@@ -0,0 +1,6 @@
+# http utils sources
+
+S_HTTP := challenge.c generics.c primitives.c parameter.c \
+ content-disposition.c content-type.c www-authenticate.c
+
+S_HTTP := $(addprefix utils/http/,$(S_HTTP)) \ No newline at end of file