1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/util/Makefile

39 lines
782 B
Makefile
Raw Normal View History

2005-10-19 22:00:35 -04:00
top_builddir=../..
include $(top_builddir)/Makefile.config
2005-09-16 07:27:27 -04:00
INCLUDES += $(GNUTLS_CFLAGS) $(OPENSSL_CFLAGS)
SUBDIRS = qs_parse
OBJS-unless$(CONFIG_SMALL) += fastfind.o
OBJS-$(CONFIG_CSS) += scanner.o
OBJS-$(CONFIG_DEBUG) += memdebug.o
OBJS-$(CONFIG_DOM) += scanner.o
ifeq ($(CONFIG_BITTORRENT),yes)
OBJS-$(CONFIG_BITTORRENT) += scanner.o
# BitTorrent is the only user. Compile in SHA1 if testing libc or
# there is no OpenSSL. The GNUTLS OpenSSL wrappers doesn't have it.
OBJS-$(CONFIG_OWN_LIBC) += sha1.o
OBJS-unless$(CONFIG_OPENSSL) += sha1.o
endif
2005-09-16 07:27:27 -04:00
OBJS = \
base64.o \
color.o \
conv.o \
env.o \
error.o \
file.o \
hash.o \
md5.o \
2005-09-16 07:27:27 -04:00
memlist.o \
memory.o \
random.o \
2005-09-16 07:27:27 -04:00
secsave.o \
snprintf.o \
string.o \
time.o
2005-09-16 07:27:27 -04:00
include $(top_srcdir)/Makefile.lib