2 Help make programs relocatable, that is, to allow them to function
3 properly when copied to an arbitrary directory.
6 build-aux/config.libpath
7 build-aux/reloc-ldflags
17 relocatable-prog-wrapper
28 gl_RELOCATABLE([$gl_source_base])
29 if test $RELOCATABLE = yes; then
30 AC_LIBOBJ([progreloc])
34 DEFS += -DEXEEXT=\"@EXEEXT@\"
35 if RELOCATABLE_VIA_WRAPPER
36 uninstall-hook: uninstall-relocwrapper
37 uninstall-relocwrapper:
38 if test $(RELOCATABLE) = yes; then \
41 *) cd $(top_builddir) && \
42 $(MAKE) $(AM_MAKEFLAGS) EXEEXT=.bin$(EXEEXT) \
43 AM_MAKEFLAGS='$(AM_MAKEFLAGS) EXEEXT=.bin$(EXEEXT)' \
47 .PHONY: uninstall-relocwrapper
58 Bruno Haible, Ben Pfaff