nusrl: Move into utils/nsurl directory.

This commit is contained in:
Michael Drake 2017-01-15 12:47:38 +00:00
parent f1c98ccfa4
commit 299a85fa7a
4 changed files with 18 additions and 3 deletions

View File

@ -621,12 +621,22 @@ include utils/Makefile
# http utility sources
include utils/http/Makefile
# nsurl utility sources
include utils/nsurl/Makefile
# Desktop sources
include desktop/Makefile
# S_COMMON are sources common to all builds
S_COMMON := $(S_CONTENT) $(S_FETCHERS) $(S_RENDER) $(S_UTILS) $(S_HTTP) \
$(S_DESKTOP) $(S_JAVASCRIPT_BINDING)
S_COMMON := \
$(S_CONTENT) \
$(S_FETCHERS) \
$(S_RENDER) \
$(S_UTILS) \
$(S_HTTP) \
$(S_NSURL) \
$(S_DESKTOP) \
$(S_JAVASCRIPT_BINDING)
# ----------------------------------------------------------------------------

View File

@ -12,7 +12,6 @@ S_UTILS := \
log.c \
messages.c \
nsoption.c \
nsurl.c \
punycode.c \
talloc.c \
time.c \

6
utils/nsurl/Makefile Normal file
View File

@ -0,0 +1,6 @@
# nsurl utils sources
S_NSURL := \
nsurl.c
S_NSURL := $(addprefix utils/nsurl/,$(S_NSURL))