mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
41 lines
991 B
Makefile
41 lines
991 B
Makefile
## Makefile.am for examples/XAdES
|
|
|
|
DEFAULT_INCLUDES = -I. -I$(top_srcdir)/include
|
|
|
|
EXTRA_DIST = *.spec*
|
|
|
|
ulib_la = @ULIBS@ $(top_builddir)/src/ulib/lib@ULIB@.la @ULIB_LIBS@
|
|
|
|
if CURL
|
|
feed_LDADD = $(ulib_la)
|
|
feed_SOURCES = feed.cpp
|
|
feed_LDFLAGS = $(PRG_LDFLAGS)
|
|
endif
|
|
|
|
sign_LDADD = libutility.la $(ulib_la)
|
|
sign_SOURCES = sign.cpp
|
|
sign_LDFLAGS = $(PRG_LDFLAGS)
|
|
|
|
archive_LDADD = libutility.la $(ulib_la)
|
|
archive_SOURCES = archive.cpp
|
|
archive_LDFLAGS = $(PRG_LDFLAGS)
|
|
|
|
client_LDADD = $(ulib_la)
|
|
client_SOURCES = client.cpp
|
|
client_LDFLAGS = $(PRG_LDFLAGS)
|
|
|
|
verify_LDADD = libverify.la libutility.la $(ulib_la)
|
|
verify_SOURCES = verify.cpp
|
|
verify_LDFLAGS = $(PRG_LDFLAGS)
|
|
|
|
libverify_la_SOURCES = context.cpp transform.cpp xpath.cpp
|
|
libutility_la_SOURCES = utility.cpp
|
|
|
|
## for convenience library
|
|
noinst_LTLIBRARIES = libutility.la libverify.la
|
|
|
|
bin_PROGRAMS = sign archive client verify feed
|
|
|
|
clean-local:
|
|
-rm -rf core .libs *.bb* *.da *.gc* *.la *.exe gmon.out
|