1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#SUBDIRS =
# audio-recorder-X-small.png files are button images (in the GUI).
# audio-recorder-X.png are icons for the GtkStatusIcon class (system tray icons in older GNOME 2.x).
pixmapsdir = $(datadir)/pixmaps/audio-recorder
pixmaps_DATA = *.png
# These are icons for the AppIndicator class (new system tray icons in Unity and GNOME 3.x).
# statusicondir = $(datadir)/icons/hicolor/48x48/apps
# statusicon_DATA = audio-recorder-on.png \
# audio-recorder-off.png \
# audio-recorder-paused.png
EXTRA_DIST = \
$(pixmaps_DATA)
# $(statusicon_DATA)
|