diff options
-rw-r--r-- | embed/Makefile.am | 7 | ||||
-rw-r--r-- | src/Makefile.am | 9 |
2 files changed, 12 insertions, 4 deletions
diff --git a/embed/Makefile.am b/embed/Makefile.am index f6b432aab..d1ddcb38b 100644 --- a/embed/Makefile.am +++ b/embed/Makefile.am @@ -96,8 +96,11 @@ libephyembedfactory_la_CPPFLAGS = \ if WITH_XULRUNNER_ENGINE libephyembedfactory_la_CPPFLAGS += \ - -I$(srcdir)xulrunner/embed \ - $(LIBXUL_INCLUDES) \ + -I$(srcdir)/xulrunner/src \ + -I$(srcdir)/xulrunner/embed \ + -I$(top_builddir)/embed/xulrunner/src \ + -I$(top_builddir)/embed/xulrunner/embed \ + $(LIBXUL_INCLUDES) \ $(NULL) endif diff --git a/src/Makefile.am b/src/Makefile.am index 188586912..8d08a4857 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,5 +1,7 @@ SUBDIRS = bookmarks +NULL = + noinst_LTLIBRARIES = libephymain.la if ENABLE_PYTHON @@ -50,7 +52,8 @@ INST_H_FILES = \ ephy-shell.h \ ephy-statusbar.h \ ephy-tab.h \ - ephy-window.h + ephy-window.h \ + $(NULL) libephymain_la_SOURCES = \ ephy-activation.c \ @@ -90,7 +93,8 @@ libephymain_la_SOURCES = \ ppview-toolbar.c \ window-commands.c \ $(INST_H_FILES) \ - $(NOINST_H_FILES) + $(NOINST_H_FILES) \ + $(NULL) nodist_libephymain_la_SOURCES = \ $(TYPES_SOURCE) @@ -212,6 +216,7 @@ epiphany_LDADD = \ if WITH_XULRUNNER_ENGINE epiphany_LDADD += \ + $(top_builddir)/embed/xulrunner/src/libgnomegeckoembed.la \ $(top_builddir)/embed/xulrunner/embed/libephyxulrunnerembed.la endif |