* doc-gnome/C/figs/Makefile.am: Don't install GNOME-specific
files if GNOME frontend is disabled. * idl/Makefile.am: Likewise. * lib/Makefile.am: Likewise. * new_icons/Makefile.am: Likewise.
Этот коммит содержится в:
родитель
fe1df0083f
Коммит
0482535bf5
@ -1,5 +1,11 @@
|
|||||||
2001-08-21 Pavel Roskin <proski@gnu.org>
|
2001-08-21 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* doc-gnome/C/figs/Makefile.am: Don't install GNOME-specific
|
||||||
|
files if GNOME frontend is disabled.
|
||||||
|
* idl/Makefile.am: Likewise.
|
||||||
|
* lib/Makefile.am: Likewise.
|
||||||
|
* new_icons/Makefile.am: Likewise.
|
||||||
|
|
||||||
* autogen.sh: Fall back to aclocal without "-I gettext.m4" in
|
* autogen.sh: Fall back to aclocal without "-I gettext.m4" in
|
||||||
case it already has gettext macros elsewhere and doesn't like
|
case it already has gettext macros elsewhere and doesn't like
|
||||||
duplicates (i.e. it's aclocal from Automake-1.4).
|
duplicates (i.e. it's aclocal from Automake-1.4).
|
||||||
|
@ -1,14 +1,13 @@
|
|||||||
SUBDIRS = figs
|
SUBDIRS = figs
|
||||||
|
|
||||||
gmc_helpdir = $(datadir)/gnome/help/gmc/C
|
|
||||||
|
|
||||||
gmc_help_DATA = index.html topic.dat
|
|
||||||
|
|
||||||
noinst_SCRIPTS = mkhtml
|
noinst_SCRIPTS = mkhtml
|
||||||
|
|
||||||
SGML_FILES = gmc.sgml
|
SGML_FILES = gmc.sgml
|
||||||
|
|
||||||
EXTRA_DIST = topic.dat $(SGML_FILES) $(noinst_SCRIPTS)
|
if GNOME
|
||||||
|
gmc_helpdir = $(datadir)/gnome/help/gmc/C
|
||||||
|
|
||||||
|
gmc_help_DATA = index.html topic.dat
|
||||||
|
|
||||||
MOSTLYCLEANFILES = *.tex *.log *.aux
|
MOSTLYCLEANFILES = *.tex *.log *.aux
|
||||||
CLEANFILES = gmc.dvi gmc.ps gmc.pdf gmc.rtf
|
CLEANFILES = gmc.dvi gmc.ps gmc.pdf gmc.rtf
|
||||||
@ -44,3 +43,6 @@ gmc.ps: gmc.dvi
|
|||||||
|
|
||||||
gmc.pdf: gmc.dvi
|
gmc.pdf: gmc.dvi
|
||||||
dvipdf gmc.dvi gmc.pdf
|
dvipdf gmc.dvi gmc.pdf
|
||||||
|
endif
|
||||||
|
|
||||||
|
EXTRA_DIST = topic.dat $(SGML_FILES) $(noinst_SCRIPTS)
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
|
if GNOME
|
||||||
gmc_helpfigdir = $(datadir)/gnome/help/gmc/C/figs
|
gmc_helpfigdir = $(datadir)/gnome/help/gmc/C/figs
|
||||||
|
|
||||||
gmc_helpfig_DATA = $(DISTFIGS)
|
gmc_helpfig_DATA = $(DISTFIGS)
|
||||||
|
endif
|
||||||
|
|
||||||
DISTFIGS = \
|
DISTFIGS = \
|
||||||
fileprops.png \
|
fileprops.png \
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
|
IDLFILES = FileManager.idl
|
||||||
|
|
||||||
|
if GNOME
|
||||||
idldir = $(prefix)/share/idl
|
idldir = $(prefix)/share/idl
|
||||||
|
|
||||||
idl_DATA = FileManager.idl
|
idl_DATA = $(IDLFILES)
|
||||||
|
endif
|
||||||
|
|
||||||
EXTRA_DIST = $(idl_DATA)
|
EXTRA_DIST = $(IDLFILES)
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
mclibdir = $(libdir)/mc
|
mclibdir = $(libdir)/mc
|
||||||
desktopdir = $(mclibdir)/desktop-scripts
|
|
||||||
suppbindir = $(mclibdir)/bin
|
suppbindir = $(mclibdir)/bin
|
||||||
tidir = $(mclibdir)/term
|
tidir = $(mclibdir)/term
|
||||||
confdir = $(sysconfdir)
|
confdir = $(sysconfdir)
|
||||||
@ -27,17 +26,22 @@ noinst_SCRIPTS = tdiff
|
|||||||
|
|
||||||
conf_DATA = mc.global
|
conf_DATA = mc.global
|
||||||
suppbin_SCRIPTS = mc.csh mc.sh
|
suppbin_SCRIPTS = mc.csh mc.sh
|
||||||
desktop_DATA = startup.links README.desktop
|
|
||||||
ti_DATA = README.xterm linux.ti xterm.ad xterm.ti ansi.ti vt100.ti xterm.tcap
|
ti_DATA = README.xterm linux.ti xterm.ad xterm.ti ansi.ti vt100.ti xterm.tcap
|
||||||
|
|
||||||
|
DESKTOP_FILES = startup.links README.desktop
|
||||||
|
if GNOME
|
||||||
|
desktopdir = $(mclibdir)/desktop-scripts
|
||||||
|
desktop_DATA = $(DESKTOP_FILES)
|
||||||
|
endif
|
||||||
|
|
||||||
mclib_DATA = $(LIBFILES_CONST) $(LIBFILES_ADD) $(LIBFILES_OUT) $(LOCALIZED_HELP)
|
mclib_DATA = $(LIBFILES_CONST) $(LIBFILES_ADD) $(LIBFILES_OUT) $(LOCALIZED_HELP)
|
||||||
|
|
||||||
# Files processed by configure don't need to be here
|
# Files processed by configure don't need to be here
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
$(LIBFILES_CONST) \
|
$(LIBFILES_CONST) \
|
||||||
$(LOCALIZED_HELP) \
|
$(LOCALIZED_HELP) \
|
||||||
|
$(DESKTOP_FILES) \
|
||||||
$(conf_DATA) \
|
$(conf_DATA) \
|
||||||
$(desktop_DATA) \
|
|
||||||
$(ti_DATA) \
|
$(ti_DATA) \
|
||||||
$(noinst_DATA) \
|
$(noinst_DATA) \
|
||||||
$(noinst_SCRIPTS) \
|
$(noinst_SCRIPTS) \
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
icondir = $(datadir)/pixmaps/mc
|
|
||||||
|
|
||||||
ALLICONS = \
|
ALLICONS = \
|
||||||
gnome-image-bmp.png \
|
gnome-image-bmp.png \
|
||||||
gnome-image-generic.png \
|
gnome-image-generic.png \
|
||||||
@ -80,6 +78,7 @@ ALLICONS = \
|
|||||||
gnome-image-x-xfig.png
|
gnome-image-x-xfig.png
|
||||||
|
|
||||||
if GNOME
|
if GNOME
|
||||||
|
icondir = $(datadir)/pixmaps/mc
|
||||||
icon_DATA = $(ALLICONS)
|
icon_DATA = $(ALLICONS)
|
||||||
else
|
else
|
||||||
icon_DATA =
|
icon_DATA =
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user