[go: up one dir, main page]

Menu

[ea90a8]: / Makefile.am  Maximize  Restore  History

Download this file

129 lines (97 with data), 3.6 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
SUBDIRS = intl po src po4a
nobase_pkgdata_DATA = Config/Colours/GTK \
Config/Colours/Tango \
Config/Shortcuts/Default
LOGO_PNG = $(top_srcdir)/Help/lib/roxterm_logo.png
FAVICON = $(top_srcdir)/Help/lib/favicon.ico
TEXT_LOGO = $(top_srcdir)/Help/lib/logo_text.png
LOGO_TEXT_ONLY = $(top_srcdir)/Help/lib/logo_text_only.png
HELPIMGS = $(LOGO_PNG) $(TEXT_LOGO) \
$(top_srcdir)/Help/lib/header.png \
$(top_srcdir)/Help/lib/sprites.png
HELPLIBFILES = $(HELPIMGS) \
$(top_srcdir)/Help/lib/roxterm.css \
$(top_srcdir)/Help/lib/roxterm_ie.css \
$(FAVICON)
HTMLFILES_EN = $(top_srcdir)/Help/en/guide.html \
$(top_srcdir)/Help/en/index.html \
$(top_srcdir)/Help/en/installation.html \
$(top_srcdir)/Help/en/news.html
HTMLFILES = $(HTMLFILES_EN)
HELPOTHER = \
$(top_srcdir)/ChangeLog \
$(top_srcdir)/NEWS
desktopdir = $(datadir)/applications
desktop_DATA = roxterm.desktop
$(LOGO_PNG): roxterm.svg
convert -background '#0000' roxterm.svg -geometry 64x64 $(LOGO_PNG)
$(FAVICON): $(LOGO_PNG)
convert $(LOGO_PNG) -geometry 16x16 $(FAVICON)
$(TEXT_LOGO): $(LOGO_PNG) $(LOGO_TEXT_ONLY)
composite -gravity SouthWest $(LOGO_PNG) $(LOGO_TEXT_ONLY) $(TEXT_LOGO)
if BUILD_MANPAGES
man_MANS = roxterm.1 roxterm-config.1
roxterm.1: roxterm.1.xml
@XMLTOMAN@ @XMLTOMAN_OPTS@ $<
roxterm-config.1: roxterm-config.1.xml
@XMLTOMAN@ @XMLTOMAN_OPTS@ $<
DISTCLEANFILES = $(man_MANS)
endif
if INSTALL_DEFAULT_APPS
defaultappsdir = $(DEFAULTAPPS_DIR)
defaultapps_DATA = roxterm.xml
endif
EXTRA_DIST = bootstrap.sh configure.ac.in config.rpath m4 roxterm.svg \
.gitignore .DirIcon AppRun AppInfo.xml AppInfo.xml.in \
roxterm.desktop $(nobase_pkgdata_DATA) $(HTMLFILES) \
$(LOGO_TEXT_ONLY) $(LOGO_PNG) $(TEXT_LOGO) $(FAVICON) \
AUTHORS COPYING README $(HELPOTHER) $(HELPLIBFILES) \
update-locales roxterm.xml \
Help/AUTHORS Help/COPYING Help/Changes Help/README \
ChangeLog.old maitch.py mscript.py version \
builddeb INSTALL.Debian INSTALL.ReadFirst \
debian/changelog debian/changelog.in \
debian/compat debian/dirs \
debian/control debian/copyright \
debian/rules debian/watch \
debian/roxterm.xpm debian/source/format \
debian/roxterm-gtk3.postinst debian/roxterm-gtk3.prerm \
debian/roxterm-gtk2.postinst debian/roxterm-gtk2.prerm \
debian/roxterm-common.doc-base debian/roxterm-common.install \
debian/roxterm-gtk3.install debian/roxterm-gtk2.install \
debian/roxterm-gtk3.menu debian/roxterm-gtk2.menu \
debian/roxterm-gtk3.lintian-overrides \
debian/roxterm-gtk2.lintian-overrides
Help/AUTHORS:
ln -nfs ../AUTHORS Help/AUTHORS
Help/COPYING:
ln -nfs ../COPYING Help/COPYING
Help/Changes:
ln -nfs ../ChangeLog Help/Changes
Help/NEWS:
ln -nfs ../NEWS Help/NEWS
Help/README:
ln -nfs ../README Help/README
dist-hook:
test -d $(top_srcdir)/.git && git log > $(top_srcdir)/ChangeLog && \
cat $(top_srcdir)/ChangeLog.old >> $(top_srcdir)/ChangeLog \
|| true
install-data-local:
$(install_sh) -m 0755 -d $(DESTDIR)/$(docdir) \
$(DESTDIR)/$(htmldir)/lib \
$(DESTDIR)/$(htmldir)/en \
$(DESTDIR)/$(pkgicondir)
$(install_sh) -m 0644 -t $(DESTDIR)/$(htmldir)/en $(HTMLFILES_EN)
$(install_sh) -m 0644 -t $(DESTDIR)/$(htmldir)/lib $(HELPLIBFILES)
$(install_sh) -m 0644 $(top_srcdir)/roxterm.svg \
$(DESTDIR)/$(pkgicondir)/
uninstall-local:
rm -rf $(DESTDIR)/$(pkgdatadir) \
$(DESTDIR)/$(docdir) \
$(DESTDIR)/$(htmldir) \
$(DESTDIR)/$(pkgicondir)/roxterm.svg
ACLOCAL_AMFLAGS = -I m4
deb:
cd $(top_srcdir) && ./builddeb
$(top_srcdir)/configure.ac: $(top_srcdir)/configure.ac.in
cd $(top_srcdir) && ./bootstrap.sh