|
|
|
@ -1,8 +1,3 @@
|
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
|
|
## Created by Anjuta - will be overwritten
|
|
|
|
|
## If you don't want it to overwrite it,
|
|
|
|
|
## Please disable it in the Anjuta project configuration
|
|
|
|
|
|
|
|
|
|
SUBDIRS = pixmaps
|
|
|
|
|
|
|
|
|
@ -20,10 +15,10 @@ install:
|
|
|
|
|
exit 1; \
|
|
|
|
|
fi;
|
|
|
|
|
@if test ! -d ${DESTDIR}; then \
|
|
|
|
|
mkdir ${DESTDIR}; \
|
|
|
|
|
mkdir -p ${DESTDIR}; \
|
|
|
|
|
fi;
|
|
|
|
|
@if test ! -d ${DESTDIR}@PACKAGE_DATA_DIR@; then \
|
|
|
|
|
mkdir ${DESTDIR}@PACKAGE_DATA_DIR@; \
|
|
|
|
|
mkdir -p ${DESTDIR}@PACKAGE_DATA_DIR@; \
|
|
|
|
|
fi;
|
|
|
|
|
cp -rf player ${DESTDIR}@PACKAGE_DATA_DIR@
|
|
|
|
|
cp -rf maps ${DESTDIR}@PACKAGE_DATA_DIR@
|
|
|
|
@ -32,3 +27,5 @@ install:
|
|
|
|
|
|
|
|
|
|
uninstall:
|
|
|
|
|
rm -rf ${DESTDIR}@PACKAGE_DATA_DIR@
|
|
|
|
|
|
|
|
|
|
EXTRA_DIST = player maps gfx tileset
|
|
|
|
|