summaryrefslogtreecommitdiff
path: root/data/templates/Makefile
blob: 49cc13e1ac728d2eaef68ff3f8c772fd7283e17b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

DOMAIN=update-manager
INFO_IN_FILES := $(wildcard *.info.in)
INFO_FILES := $(patsubst %.info.in,%.info,$(wildcard *.info.in))

all: $(INFO_FILES)

%.info: %.info.in 
	sed 's/^_//g' < $< > $@
	intltool-extract --type=gettext/rfc822deb $<
	#intltool-merge -d ../po $< $@

clean:
	rm -f $(wildcard *.h)