diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-11-29 19:49:09 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-07 04:49:43 +0800 |
commit | bc85f2fc3dc08621ed11b56740c792524ef42a96 (patch) | |
tree | d71e5d1aaa19f2c77051de9141e996aea13fc196 /lib/history | |
parent | a322650ec11f7e863fc64252a50a6ad0d8f95dad (diff) | |
download | gsoc2013-epiphany-bc85f2fc3dc08621ed11b56740c792524ef42a96.tar gsoc2013-epiphany-bc85f2fc3dc08621ed11b56740c792524ef42a96.tar.gz gsoc2013-epiphany-bc85f2fc3dc08621ed11b56740c792524ef42a96.tar.bz2 gsoc2013-epiphany-bc85f2fc3dc08621ed11b56740c792524ef42a96.tar.lz gsoc2013-epiphany-bc85f2fc3dc08621ed11b56740c792524ef42a96.tar.xz gsoc2013-epiphany-bc85f2fc3dc08621ed11b56740c792524ef42a96.tar.zst gsoc2013-epiphany-bc85f2fc3dc08621ed11b56740c792524ef42a96.zip |
ephy-history-service: forgot Makefile.am file
Diffstat (limited to 'lib/history')
-rw-r--r-- | lib/history/Makefile.am | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/history/Makefile.am b/lib/history/Makefile.am new file mode 100644 index 000000000..fcffe7eb5 --- /dev/null +++ b/lib/history/Makefile.am @@ -0,0 +1,21 @@ +noinst_LTLIBRARIES = libephyhistory.la + +libephyhistory_la_SOURCES = \ + ephy-history-service.c \ + ephy-history-service.h \ + ephy-history-service-hosts-table.c \ + ephy-history-service-private.h \ + ephy-history-service-urls-table.c \ + ephy-history-service-visits-table.c \ + ephy-history-types.c \ + ephy-history-types.h + +libephyhistory_la_CPPFLAGS = \ + -I$(top_builddir)/lib \ + -I$(top_srcdir)/lib \ + -DSHARE_DIR=\"$(pkgdatadir)\" \ + $(AM_CPPFLAGS) + +libephyhistory_la_CFLAGS = \ + $(DEPENDENCIES_CFLAGS) \ + $(AM_CFLAGS) |