blob: 0d554e370e100c022ac58a04d402762b0f5a99f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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:
clean:
|