1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
AUTOMAKE_OPTIONS = color-tests parallel-tests
export VERBOSE=1
libdirpath = src
LIBDIR = $(top_srcdir)/$(libdirpath)
localedir = $(datadir)/locale
AM_CPPFLAGS = -I$(LIBDIR) -I$(top_builddir)/$(libdirpath)
# Large files needed by GPGME
AM_CPPFLAGS += @XML_CPPFLAGS@ @LIBCURL_CPPFLAGS@ \
-DLOCALEDIR=\"$(localedir)\"
AM_CFLAGS = @LIBGCRYPT_CFLAGS@ @GPGME_CFLAGS@
LDADD = @XML_LIBS@ @LIBCURL@ @LIBGCRYPT_LIBS@ @GPGME_LIBS@ @EXPAT_LIBS@ \
@LTLIBINTL@
TESTS = login
noinst_PROGRAMS = $(TESTS)
common = ../test.c ../test.h ../test-tools.h common.c common.h \
$(LIBDIR)/cdecode.c \
$(LIBDIR)/cencode.c \
$(LIBDIR)/crypto.c \
$(LIBDIR)/isds.c \
$(LIBDIR)/physxml.c \
$(LIBDIR)/soap.c \
$(LIBDIR)/utils.c \
$(LIBDIR)/validator.c \
$(LIBDIR)/cdecode.h \
$(LIBDIR)/cencode.h \
$(LIBDIR)/crypto.h \
$(LIBDIR)/gettext.h \
$(LIBDIR)/isds.h \
$(LIBDIR)/isds_priv.h \
$(LIBDIR)/physxml.h \
$(LIBDIR)/soap.h \
$(LIBDIR)/utils.h \
$(LIBDIR)/validator.h
if WIN32
common += $(LIBDIR)/win32.c $(LIBDIR)/win32.h
else
common += $(LIBDIR)/unix.c $(LIBDIR)/unix.h
endif
# Omit isds.c
isds_common = ../test.c ../test.h ../test-tools.h \
$(LIBDIR)/cdecode.c \
$(LIBDIR)/cencode.c \
$(LIBDIR)/crypto.c \
$(LIBDIR)/physxml.c \
$(LIBDIR)/soap.c \
$(LIBDIR)/utils.c \
$(LIBDIR)/validator.c \
$(LIBDIR)/cdecode.h \
$(LIBDIR)/cencode.h \
$(LIBDIR)/crypto.h \
$(LIBDIR)/isds.h \
$(LIBDIR)/isds_priv.h \
$(LIBDIR)/physxml.h \
$(LIBDIR)/soap.h \
$(LIBDIR)/utils.h \
$(LIBDIR)/validator.h
if WIN32
isds_common += $(LIBDIR)/win32.c $(LIBDIR)/win32.h
else
isds_common += $(LIBDIR)/unix.c $(LIBDIR)/unix.h
endif
# Access _hidden symbols
#compute_hash_SOURCES = compute_hash.c $(common)
login_SOURCES = login.c $(common)
# Access static symbols from isds.c
#isds_dbtype_SOURCES = isds-dbtype.c $(isds_common)
|