diff options
author | Xan Lopez <xan@igalia.com> | 2012-03-14 01:56:54 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-14 01:56:54 +0800 |
commit | 7180bb84f41ee56eef859245d2d5a987c9d7c20e (patch) | |
tree | 90641b22943a8360dd2e8f56000035e1a3185366 /lib/Makefile.am | |
parent | 8898bd3460aa1dc79ab2a9fa82d1a4f64a37ae64 (diff) | |
download | gsoc2013-epiphany-7180bb84f41ee56eef859245d2d5a987c9d7c20e.tar gsoc2013-epiphany-7180bb84f41ee56eef859245d2d5a987c9d7c20e.tar.gz gsoc2013-epiphany-7180bb84f41ee56eef859245d2d5a987c9d7c20e.tar.bz2 gsoc2013-epiphany-7180bb84f41ee56eef859245d2d5a987c9d7c20e.tar.lz gsoc2013-epiphany-7180bb84f41ee56eef859245d2d5a987c9d7c20e.tar.xz gsoc2013-epiphany-7180bb84f41ee56eef859245d2d5a987c9d7c20e.tar.zst gsoc2013-epiphany-7180bb84f41ee56eef859245d2d5a987c9d7c20e.zip |
lib: link to the internal libraries instead of copying source files
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 26 |
1 files changed, 4 insertions, 22 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 08c8805d7..c3965bd00 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -95,29 +95,9 @@ libephymisc_la_CFLAGS = \ libephymisc_la_LIBADD = -lm bin_PROGRAMS = ephy-profile-migrator + ephy_profile_migrator_SOURCES = \ - ephy-sqlite-connection.c \ - ephy-sqlite-connection.h \ - ephy-sqlite-statement.c \ - ephy-sqlite-statement.h \ - ephy-sqlite.h \ - history/ephy-history-service.c \ - history/ephy-history-service.h \ - history/ephy-history-service-private.h \ - history/ephy-history-service-hosts-table.c \ - history/ephy-history-service-urls-table.c \ - history/ephy-history-service-visits-table.c \ - history/ephy-history-types.c \ - history/ephy-history-types.h \ - ephy-profile-migrator.c \ - ephy-profile-utils.c \ - ephy-profile-utils.h \ - ephy-debug.c \ - ephy-debug.h \ - ephy-file-helpers.c \ - ephy-file-helpers.h \ - ephy-settings.c \ - ephy-string.c + ephy-profile-migrator.c ephy_profile_migrator_CFLAGS = \ $(DEPENDENCIES_CFLAGS) \ @@ -125,6 +105,8 @@ ephy_profile_migrator_CFLAGS = \ $(AM_CFLAGS) ephy_profile_migrator_LDADD = \ + $(top_builddir)/lib/history/libephyhistory.la \ + libephymisc.la \ $(DEPENDENCIES_LIBS) if ENABLE_NSS |