Mercurial > audlegacy
annotate skins/Osmosis/Makefile @ 3583:d3ba8bcf9fd6 trunk
Cosmetics.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Wed, 19 Sep 2007 17:47:18 +0300 |
parents | 9ddf21ab5c84 |
children |
rev | line source |
---|---|
3535 | 1 include ../../buildsys.mk |
1854
2ad0069dc0b2
[svn] - add the Osmosis skin, a more sophisticated example of the new skinning engine.
nenolod
parents:
diff
changeset
|
2 |
2ad0069dc0b2
[svn] - add the Osmosis skin, a more sophisticated example of the new skinning engine.
nenolod
parents:
diff
changeset
|
3 skindir = $(pkgdatadir)/Skins/Osmosis |
3535 | 4 |
5 install-extra: | |
6 y="*.png *.txt *.hints"; \ | |
7 for i in $$y; do \ | |
8 ${INSTALL_STATUS}; \ | |
9 if ${MKDIR_P} ${DESTDIR}${skindir} && ${INSTALL} -m 644 $$i ${DESTDIR}${skindir}/$$i; then \ | |
10 ${INSTALL_OK}; \ | |
11 else \ | |
12 ${INSTALL_FAILED}; \ | |
13 fi; \ | |
14 done | |
2409
30ab29ed32d8
[svn] - back out objective-make topdir probe stuff, it doesnt work on some
nenolod
parents:
2393
diff
changeset
|
15 |
3535 | 16 uninstall-extra: |
17 y="*.png *.txt *.hints"; \ | |
18 for i in $$y; do \ | |
19 if [ -f ${DESTDIR}${skindir}/$$i ]; then \ | |
20 if rm -f ${DESTDIR}${skindir}/$$i; then \ | |
21 ${DELETE_OK}; \ | |
22 else \ | |
23 ${DELETE_FAILED}; \ | |
24 fi \ | |
25 fi; \ | |
26 done |