We have a confusing array of nearly-identical CFLAGS/LIBS definitions in configure.ac. Time to simplify. Instead let's just have one definition that includes all the libraries provided by Evolution-Data-Server (incl. Camel). That, in combination with GNOME_PLATFORM, gives us most of what we need for compliation and linking, and we can sprinkle definitions for additional library dependencies in Makefile.am's as needed.
21 lines
479 B
Makefile
21 lines
479 B
Makefile
noinst_PROGRAMS=import-cert
|
|
|
|
TEST_CPPFLAGS= \
|
|
$(AM_CPPFLAGS) \
|
|
-I$(top_srcdir)/smime/lib \
|
|
$(EVOLUTION_DATA_SERVER_CFLAGS) \
|
|
$(GNOME_PLATFORM_CFLAGS) \
|
|
$(CERT_UI_CFLAGS)
|
|
|
|
TEST_LIBS= \
|
|
$(top_builddir)/smime/lib/libessmime.la \
|
|
-L/home/toshok/src/mozilla/mozilla/dist/lib \
|
|
$(CERT_UI_LIBS) \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(EVOLUTION_DATA_SERVER_LIBS) \
|
|
$(GNOME_PLATFORM_LIBS)
|
|
|
|
import_cert_LDADD=$(TEST_LIBS)
|
|
|
|
-include $(top_srcdir)/git.mk
|