netsurf/utils/Makefile
Vincent Sanders a2396edde4 complete transition to locale independant core operation
The netsurf core no longer uses any locale dependant operations
excepting the mall number or cases where such operations are
explicitly wanted.

the netsurf_init now calls setlocale with the empty string and lets
the c library setup as per its specific implementation.

any core functionality that specificaly processes ascii text must use
the utils/ascii.h header to do so.
2016-09-29 22:37:10 +01:00

26 lines
315 B
Makefile

# utils sources
S_UTILS := \
base64.c \
bloom.c \
corestrings.c \
file.c \
filename.c \
filepath.c \
hashtable.c \
idna.c \
libdom.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))