source: git/lib/icons/Makefile.am

Last change on this file was 8048171, checked in by Olly Betts <olly@…>, 4 months ago

Improve the station search UI

Use wxSearchCtrl for the control which means it'll now use the
standard search control for platforms which have one. This
allows us to easily set a placeholder text to make it clearer
what the control is for.

  • Property mode set to 100644
File size: 2.4 KB
RevLine 
[620b2b7]1## Process this file with automake to produce Makefile.in
2
[63c2fe8]3xpm_files = \
[ea1ea51]4        aven.xpm \
[d7b53e3]5        log.xpm \
[63c2fe8]6        open.xpm \
7        open_pres.xpm \
8        rotation.xpm \
9        plan.xpm \
10        elevation.xpm \
11        defaults.xpm \
12        names.xpm \
13        crosses.xpm \
14        entrances.xpm \
15        fixed_pts.xpm \
16        exported_pts.xpm \
17        ug_legs.xpm \
18        surface_legs.xpm \
19        tubes.xpm \
[4938bcd]20        solid_surface.xpm \
[63c2fe8]21        pres_frew.xpm \
22        pres_rew.xpm \
23        pres_go_back.xpm \
24        pres_pause.xpm \
25        pres_go.xpm \
26        pres_ff.xpm \
27        pres_fff.xpm \
28        pres_stop.xpm \
29        survey_tree.xpm \
30        pres_tree.xpm
31
[66bfec8]32EXTRA_DIST = \
[27c74a9]33        3d.svg err.svg plt.svg pos.svg svx.svg \
[ea1ea51]34        3d.png err.png plt.png pos.png svx.png
[27b8b59]35
[66bfec8]36svgicondir = $(datadir)/icons/hicolor/scalable
37x32icondir = $(datadir)/icons/hicolor/32x32
38
39install-data-local:
[318bdd8]40        $(MKDIR_P) "$(DESTDIR)$(svgicondir)/mimetypes"
41        $(MKDIR_P) "$(DESTDIR)$(x32icondir)/mimetypes"
[66bfec8]42        for f in 3d err pos svx ; do \
[318bdd8]43          $(INSTALL_DATA) "$(srcdir)/$$f.svg" "$(DESTDIR)$(svgicondir)/mimetypes/application-x-survex-$$f.svg" ; \
44          $(INSTALL_DATA) "$(srcdir)/$$f.png" "$(DESTDIR)$(x32icondir)/mimetypes/application-x-survex-$$f.png" ; \
[66bfec8]45        done
[318bdd8]46        $(INSTALL_DATA) "$(srcdir)/plt.svg" "$(DESTDIR)$(svgicondir)/mimetypes/application-x-compass-plot.svg"
47        $(INSTALL_DATA) "$(srcdir)/plt.png" "$(DESTDIR)$(x32icondir)/mimetypes/application-x-compass-plot.png"
[66bfec8]48
49uninstall-local:
50        for f in 3d err pos svx ; do \
[318bdd8]51          rm -f $(DESTDIR)$(svgicondir)/mimetypes/application-x-survex-$$f.svg ; \
52          rm -f $(DESTDIR)$(x32icondir)/mimetypes/application-x-survex-$$f.png ; \
[66bfec8]53        done
[318bdd8]54        rm -f $(DESTDIR)$(svgicondir)/mimetypes/application-x-compass-plot.svg
55        rm -f $(DESTDIR)$(x32icondir)/mimetypes/application-x-compass-plot.png
[66bfec8]56
[edb6576]57#       tubesprefs.png stationsprefs.png indicatorprefs.png\
58#       windowprefs.png gridprefs.png unitsprefs.png \
[be891ea]59#       legsprefs.png ctlprefs.png pres-restart.png pres-create.png\
[d5cc724]60#       pres-record.png pres-finish.png svxedit.png
[27b8b59]61
[66bfec8]62appicondir = $(datadir)/icons/hicolor/scalable/apps
63dist_appicon_DATA = aven.svg
[e72b854]64
[b8271f8f]65Aven.iconset.zip: aven.svg
[87900bb]66        $(SHELL) $(srcdir)/svg2iconsetzip aven.svg Aven.iconset.zip
[b8271f8f]67
[63c2fe8]68SUFFIXES = .ico .png .svg .iconset.zip .xpm
[f8576fb]69
[d5cc724]70.svg.iconset.zip:
71        $(SHELL) $(srcdir)/svg2iconsetzip $< $@
[27b8b59]72
73.png.ico:
[95fa391]74        $(SHELL) $(srcdir)/png2winicon $< $@
[b462168]75
[dfa3e57]76.xpm.png:
77        $(SHELL) $(srcdir)/xpm2png $< $@
[63c2fe8]78
[d5cc724]79iconsets = Aven.iconset.zip\
[4cc264e]80        3d.iconset.zip err.iconset.zip plt.iconset.zip pos.iconset.zip\
81        svx.iconset.zip
[f8576fb]82
[63a2dba]83MAINTAINERCLEANFILES = $(iconsets)
[63c2fe8]84
[66bfec8]85EXTRA_DIST += png2winicon png2iconsetzip svg2iconsetzip\
[63c2fe8]86        $(xpm_files)\
[d5cc724]87        aven.ico\
[4cc264e]88        3d.ico err.ico plt.ico pos.ico svx.ico\
89        $(iconsets)
Note: See TracBrowser for help on using the repository browser.