blob: ec36a985dd88b85b80e88a0ea6af0d9315193818 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include ../Makefile.inc
RNOTES_LANGS= de en es fr it
all:
@echo "nothing to do"
install:
mkdir -p $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
install *.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps
for i in $(RNOTES_LANGS); do \
mkdir -p $(DESTDIR)/$(ANACONDADATADIR)/pixmaps/rnotes/$$i; \
install rnotes/$$i/*.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps/rnotes/$$i; \
done
depend:
|