~ubuntu-branches/ubuntu/oneiric/libindicator/oneiric

« back to all changes in this revision

Viewing changes to libindicator/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Ted Gould
  • Date: 2011-01-27 15:31:04 UTC
  • mfrom: (1.1.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20110127153104-pq0apjb7lvrs878b
Tags: 0.3.18-0ubuntu1
* New upstream release.
  * Adding a signal for scrolling that includes the entry
* debian/rules: Updating shlibs 

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
 
105
105
gen-%.xml.h: %.xml
106
106
        @echo "Building $@ from $<"
107
 
        @echo "extern const char * _$(subst -,_,$(subst .,_,$(basename $<)));" > $@
 
107
        @echo "extern const char * _$(subst -,_,$(subst .,_,$(basename $(notdir $<))));" > $@
108
108
 
109
109
gen-%.xml.c: %.xml
110
110
        @echo "Building $@ from $<"
111
 
        @echo "const char * _$(subst -,_,$(subst .,_,$(basename $<))) = " > $@
 
111
        echo "const char * _$(subst -,_,$(subst .,_,$(basename $(notdir $<)))) = " > $@
112
112
        @sed -e "s:\":\\\\\":g" -e s:^:\": -e s:\$$:\\\\n\": $< >> $@
113
113
        @echo ";" >> $@
114
114