~ubuntu-branches/ubuntu/karmic/regexxer/karmic

« back to all changes in this revision

Viewing changes to pixmaps/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-02-19 11:28:21 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070219112821-3w5j8kdhwiar1uoh
Tags: 0.9-0ubuntu1
* New upstream release:
  - Command line option support
  - Icon theme support
  - Now builds a working executable on systems with newer libglade
  - New GTK+ file chooser button
  - Replaced about dialog with stock GTK+ one
  - Completely revamped build system
  - Lots of new translations: bg ca dz es eu fi fr hu ne pa pl sl sr 
    sr@Latn uk vi zh_CN zh_HK zh_TW
  - Other minor cleanups and fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## $Id: Makefile.am,v 1.12 2004/06/19 09:03:14 daniel Exp $
2
 
##
3
 
## Copyright (c) 2002  Daniel Elstner  <daniel.elstner@gmx.net>
4
 
##
5
 
## This program is free software; you can redistribute it and/or modify
6
 
## it under the terms of the GNU General Public License VERSION 2 as
7
 
## published by the Free Software Foundation.  You are not allowed to
8
 
## use any other version of the license; unless you got the explicit
9
 
## permission from the author to do so.
10
 
##
11
 
## This program is distributed in the hope that it will be useful,
12
 
## but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
## GNU General Public License for more details.
15
 
##
16
 
## You should have received a copy of the GNU General Public License
17
 
## along with this program; if not, write to the Free Software
18
 
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
 
 
20
 
 
21
 
pixmapdir = $(datadir)/pixmaps
22
 
dist_pixmap_DATA = regexxer.png
23
 
 
24
 
stockimages = stock_menu_about.png stock_save_all_16.png stock_save_all_24.png
25
 
dist_noinst_DATA = $(stockimages)
26
 
 
27
 
BUILT_SOURCES = stockimages.h
28
 
CLEANFILES    = stockimages.h
29
 
 
30
 
# use --extern here and include stockimages.h within an anonymous namespace
31
 
gdk_pixbuf_csource_command = $(GDK_PIXBUF_CSOURCE) --extern --raw
32
 
 
33
 
stockimages.h: $(stockimages)
34
 
        @build_list='--build-list'; \
35
 
        list='$(stockimages)'; for file in $$list; do \
36
 
          name=`echo "$$file" | sed 's|^.*/||;s|\..*$$||;s|-|_|g'`; \
37
 
          dir=; test -f "$$file" || dir='$(srcdir)/'; \
38
 
          build_list="$$build_list $$name $$dir$$file"; \
39
 
        done; \
40
 
        echo " $(gdk_pixbuf_csource_command) $$build_list >$@"; \
41
 
        $(gdk_pixbuf_csource_command) $$build_list >$@
42