grafthistory: support curl
[elinks/elinks-j605.git] / src / util / Makefile
blobe0ea7cf8dd88d060e49c7191d6d745b0b895672d
1 top_builddir=../..
2 include $(top_builddir)/Makefile.config
4 # Reverse a CONFIG_* string
5 # Usage $(call not,$(CONFIG_FOO))
6 not = $(if $(findstring yes,$(1)),no,yes)
8 OBJS-$(CONFIG_DEBUG) += memdebug.o
9 OBJS-$(CONFIG_MD5) += md5.o
10 OBJS-$(CONFIG_SCANNER) += scanner.o
11 OBJS-$(CONFIG_SHA1) += sha1.o
12 OBJS-$(call not,$(CONFIG_SMALL)) += fastfind.o
14 OBJS = \
15 base64.o \
16 color.o \
17 conv.o \
18 env.o \
19 error.o \
20 file.o \
21 hash.o \
22 memlist.o \
23 memory.o \
24 secsave.o \
25 snprintf.o \
26 string.o \
27 time.o
29 include $(top_srcdir)/Makefile.lib