summaryrefslogtreecommitdiff
path: root/utils/Makefile
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2016-08-07 15:22:13 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2016-08-07 15:22:13 +0100
commit4394587ab0e9bcb51b6d482497c11c72da0723de (patch)
tree4c515cb3469035020efb474715ce311673324f13 /utils/Makefile
parent0e76523e4c12120870a03a5f51143c6283c2704e (diff)
downloadnetsurf-4394587ab0e9bcb51b6d482497c11c72da0723de.tar.gz
netsurf-4394587ab0e9bcb51b6d482497c11c72da0723de.tar.bz2
Utils: Split time handling functions out of `utils.c` into `time.c`.
Diffstat (limited to 'utils/Makefile')
-rw-r--r--utils/Makefile26
1 files changed, 22 insertions, 4 deletions
diff --git a/utils/Makefile b/utils/Makefile
index d6a6c646e..b6eede494 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -1,8 +1,26 @@
# 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 bloom.c nsoption.c file.c idna.c \
- punycode.c
+S_UTILS := \
+ base64.c \
+ bloom.c \
+ corestrings.c \
+ file.c \
+ filename.c \
+ filepath.c \
+ hashtable.c \
+ idna.c \
+ libdom.c \
+ locale.c \
+ log.c \
+ messages.c \
+ nsoption.c \
+ nsurl.c \
+ punycode.c \
+ talloc.c \
+ time.c \
+ url.c \
+ useragent.c \
+ utf8.c \
+ utils.c
S_UTILS := $(addprefix utils/,$(S_UTILS))