From 4394587ab0e9bcb51b6d482497c11c72da0723de Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 7 Aug 2016 15:22:13 +0100 Subject: Utils: Split time handling functions out of `utils.c` into `time.c`. --- utils/Makefile | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) (limited to 'utils/Makefile') 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)) -- cgit v1.2.3