Mercurial > pidgin
view src/Makefile.am @ 2452:824e1afefdd3
[gaim-migrate @ 2465]
Jim Knoble says:
$ prefix=/usr
$ exec_prefix='${prefix}'
$ bindir='${exec_prefix}/bin'
$ echo "--- bindir is ${bindir}"
--- bindir is ${exec_prefix}/bin
$ eval echo "--- bindir is ${bindir}"
--- bindir is ${prefix}/bin
$ eval eval echo "--- bindir is ${bindir}"
^^^^^^^^^^^
--- bindir is /usr/bin
^^^^^^^^^^
$
Be sure to comment that so that no one tries using any weird quotes or
shell metacharacters there.
Stupid shells. Where's the fvcking recursive expansion operator?
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Mon, 08 Oct 2001 20:37:32 +0000 |
parents | 4cfe441ed880 |
children | 4eb0490f5ff3 |
line wrap: on
line source
SUBDIRS = protocols if GNOMEAPPLET bin_PROGRAMS = gaim_applet gaim_applet_SOURCES = about.c \ aim.c \ applet.c \ away.c \ browser.c \ buddy.c \ buddy_chat.c \ conversation.c \ core.c \ dialogs.c \ gaimrc.c \ gtkimhtml.c \ gtkspell.c \ gtkticker.c \ html.c \ idle.c \ list.c \ module.c \ multi.c \ perl.c \ plugins.c \ prefs.c \ proxy.c \ prpl.c \ server.c \ sound.c \ ticker.c \ util.c gaim_applet_DEPENDENCIES = @LIBOBJS@ $(STATIC_LINK_LIBS) gaim_applet_LDFLAGS = -export-dynamic gaim_applet_LDADD = @LDADD@ @LIBOBJS@ else bin_PROGRAMS = gaim gaim_SOURCES = about.c \ aim.c \ applet.c \ away.c \ browser.c \ buddy.c \ buddy_chat.c \ conversation.c \ core.c \ dialogs.c \ gaimrc.c \ gtkimhtml.c \ gtkspell.c \ gtkticker.c \ html.c \ idle.c \ list.c \ module.c \ multi.c \ perl.c \ plugins.c \ prefs.c \ proxy.c \ prpl.c \ server.c \ sound.c \ ticker.c \ util.c gaim_DEPENDENCIES = @LIBOBJS@ $(STATIC_LINK_LIBS) gaim_LDFLAGS = -export-dynamic gaim_LDADD = @LDADD@ @LIBOBJS@ endif CFLAGS += $(PERL_CFLAGS) CFLAGS += -DLOCALEDIR=\"$(datadir)/locale\" -DLIBDIR=\"$(libdir)/gaim/\" $(DEBUG_CFLAGS) LIBS = @LIBS@ $(UI_LIBS) $(SOUND_LIBS) $(STATIC_LINK_LIBS) $(PERL_LIBS) $(XSS_LIBS) $(INTLLIBS) $(DEBUG_LIBS) EXTRA_DIST = applet.h \ convo.h \ core.h \ gaim.h \ getopt.c \ getopt.h \ getopt1.c \ gtkimhtml.h \ gtkspell.h \ gtkticker.h \ multi.h \ prpl.h \ proxy.h \ ui.h