blob: 1084947fd2678b721d5137759d6ccb4e64f55064 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
PREFIX = /usr/local
DATADIR = $(PREFIX)/share
BINDIR = $(PREFIX)/bin
DESKTOP_IN := $(wildcard *.desktop.in)
DESKTOP = $(DESKTOP_IN:.desktop.in=.desktop)
all: $(DESKTOP)
clean:
rm -f $(DESKTOP)
install: all
install -d $(DATADIR)/applications
install -m644 $(DESKTOP) $(DATADIR)/applications
%.desktop: %.desktop.in
intltool-merge --utf8 ../po $< $@ -d -u -c intltool-merge-cache
|