~ubuntu-branches/ubuntu/oneiric/language-selector/oneiric

1
2
3
4
5
6
7
8
9
10
11
DESKTOP_FILES := $(patsubst %.desktop.in,%.desktop,$(wildcard *.desktop.in))
NOTE_FILES := $(patsubst %.note.in,%.note,$(wildcard *.note.in))

all: $(DESKTOP_FILES) $(NOTE_FILES)

%.desktop: %.desktop.in 
	intltool-merge -d ../po $< $@

%.note: %.note.in
	/usr/share/intltool-debian/intltool-merge --rfc822deb-style ../po $< $@