2002-06-29 01:26:42 +02:00
|
|
|
|
2004-10-30 21:27:06 +02:00
|
|
|
noinst_LIBRARIES = libor.a libor-crypto.a
|
2002-06-29 01:26:42 +02:00
|
|
|
|
|
|
|
#CFLAGS = -Wall -Wpointer-arith -O2
|
|
|
|
|
2008-02-17 20:03:49 +01:00
|
|
|
if USE_OPENBSD_MALLOC
|
2008-02-18 19:14:32 +01:00
|
|
|
libor_extra_source=OpenBSD_malloc_Linux.c
|
|
|
|
else
|
|
|
|
libor_extra_source=
|
2008-02-17 20:03:49 +01:00
|
|
|
endif
|
|
|
|
|
2008-07-25 16:43:24 +02:00
|
|
|
libor_a_SOURCES = address.c log.c util.c compat.c container.c mempool.c \
|
|
|
|
memarea.c $(libor_extra_source)
|
2008-02-18 19:14:32 +01:00
|
|
|
libor_crypto_a_SOURCES = crypto.c aes.c tortls.c torgzip.c
|
|
|
|
|
2008-07-25 16:43:24 +02:00
|
|
|
noinst_HEADERS = address.h log.h crypto.h test.h util.h compat.h aes.h torint.h tortls.h strlcpy.c strlcat.c torgzip.h container.h ht.h mempool.h memarea.h ciphers.inc
|