diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-08-08 21:42:23 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-08-08 21:42:23 +0800 |
commit | 1944203b014cc0e2ff23c81534e03206936a1578 (patch) | |
tree | e1ed58454b9855999ee58a42bfc724c47a07aa3a /src/Makefile.am | |
parent | 512da5665179b1bf7815e33f2d2e9f3a4f59380c (diff) | |
download | gsoc2013-epiphany-1944203b014cc0e2ff23c81534e03206936a1578.tar.gz gsoc2013-epiphany-1944203b014cc0e2ff23c81534e03206936a1578.tar.zst gsoc2013-epiphany-1944203b014cc0e2ff23c81534e03206936a1578.zip |
R src/epiphany.in:
2004-08-08 Christian Persch <chpe@cvs.gnome.org>
* configure.in:
* src/Makefile.am:
R src/epiphany.in:
Get rid of the startup script, and use rpath linking instead.
Ported from galeon.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 7688254a0..8c868fd75 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -20,8 +20,7 @@ endif noinst_LTLIBRARIES = libephymain.la -bin_PROGRAMS = epiphany-bin -bin_SCRIPTS = epiphany +bin_PROGRAMS = epiphany CXXLD = $(CXX) LINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ @@ -102,9 +101,9 @@ libephymain_la_SOURCES = \ $(INST_H_FILES) \ $(NOINST_H_FILES) -epiphany_bin_SOURCES = ephy-main.c +epiphany_SOURCES = ephy-main.c -epiphany_bin_LDADD = \ +epiphany_LDADD = \ $(top_builddir)/src/libephymain.la \ $(top_builddir)/src/bookmarks/libephybookmarks.la \ $(top_builddir)/embed/libephyembedfactory.la \ @@ -117,6 +116,8 @@ epiphany_bin_LDADD = \ $(EPIPHANY_DEPENDENCY_LIBS) \ $(INTLLIBS) +epiphany_LDFLAGS = -R$(MOZILLA_HOME) + BUILT_SOURCES = $(CORBA_SOURCE) CLEANFILES = $(CORBA_SOURCE) |