mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-22 22:41:30 +03:00
27 lines
334 B
Makefile
27 lines
334 B
Makefile
# utils sources
|
|
|
|
S_UTILS := \
|
|
bloom.c \
|
|
corestrings.c \
|
|
file.c \
|
|
filename.c \
|
|
filepath.c \
|
|
hashmap.c \
|
|
hashtable.c \
|
|
idna.c \
|
|
libdom.c \
|
|
log.c \
|
|
messages.c \
|
|
nscolour.c \
|
|
nsoption.c \
|
|
punycode.c \
|
|
ssl_certs.c \
|
|
talloc.c \
|
|
time.c \
|
|
url.c \
|
|
useragent.c \
|
|
utf8.c \
|
|
utils.c
|
|
|
|
S_UTILS := $(addprefix utils/,$(S_UTILS))
|