2005-10-19 22:00:35 -04:00
|
|
|
top_builddir=../..
|
|
|
|
include $(top_builddir)/Makefile.config
|
2005-09-16 07:27:27 -04:00
|
|
|
|
2006-01-21 02:44:19 -05:00
|
|
|
INCLUDES += $(GNUTLS_CFLAGS) $(OPENSSL_CFLAGS)
|
|
|
|
|
2021-12-29 15:01:47 -05:00
|
|
|
SUBDIRS = qs_parse
|
|
|
|
|
2007-08-28 19:57:01 -04:00
|
|
|
OBJS-unless$(CONFIG_SMALL) += fastfind.o
|
2006-01-18 20:08:07 -05:00
|
|
|
OBJS-$(CONFIG_CSS) += scanner.o
|
|
|
|
OBJS-$(CONFIG_DEBUG) += memdebug.o
|
|
|
|
OBJS-$(CONFIG_DOM) += scanner.o
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_BITTORRENT),yes)
|
2021-06-21 15:01:37 -04:00
|
|
|
OBJS-$(CONFIG_BITTORRENT) += scanner.o
|
2006-01-18 20:08:07 -05:00
|
|
|
# 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
|
2007-08-28 19:57:01 -04:00
|
|
|
OBJS-unless$(CONFIG_OPENSSL) += sha1.o
|
2006-01-18 20:08:07 -05:00
|
|
|
endif
|
2005-09-16 07:27:27 -04:00
|
|
|
|
|
|
|
OBJS = \
|
|
|
|
base64.o \
|
|
|
|
color.o \
|
|
|
|
conv.o \
|
|
|
|
env.o \
|
|
|
|
error.o \
|
|
|
|
file.o \
|
|
|
|
hash.o \
|
2022-01-10 14:23:47 -05:00
|
|
|
md5.o \
|
2005-09-16 07:27:27 -04:00
|
|
|
memlist.o \
|
|
|
|
memory.o \
|
2008-05-25 11:31:49 -04:00
|
|
|
random.o \
|
2005-09-16 07:27:27 -04:00
|
|
|
secsave.o \
|
|
|
|
snprintf.o \
|
|
|
|
string.o \
|
2005-09-28 06:38:17 -04:00
|
|
|
time.o
|
2005-09-16 07:27:27 -04:00
|
|
|
|
2005-10-19 19:11:47 -04:00
|
|
|
include $(top_srcdir)/Makefile.lib
|