Makefile.am changed so we will only have to do an make dist to pack a new distfile with all data in it.

origin
stpohle 21 years ago
parent 1304e53d55
commit 026c9457c8

@ -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 SUBDIRS = pixmaps
@ -20,10 +15,10 @@ install:
exit 1; \ exit 1; \
fi; fi;
@if test ! -d ${DESTDIR}; then \ @if test ! -d ${DESTDIR}; then \
mkdir ${DESTDIR}; \ mkdir -p ${DESTDIR}; \
fi; fi;
@if test ! -d ${DESTDIR}@PACKAGE_DATA_DIR@; then \ @if test ! -d ${DESTDIR}@PACKAGE_DATA_DIR@; then \
mkdir ${DESTDIR}@PACKAGE_DATA_DIR@; \ mkdir -p ${DESTDIR}@PACKAGE_DATA_DIR@; \
fi; fi;
cp -rf player ${DESTDIR}@PACKAGE_DATA_DIR@ cp -rf player ${DESTDIR}@PACKAGE_DATA_DIR@
cp -rf maps ${DESTDIR}@PACKAGE_DATA_DIR@ cp -rf maps ${DESTDIR}@PACKAGE_DATA_DIR@
@ -32,3 +27,5 @@ install:
uninstall: uninstall:
rm -rf ${DESTDIR}@PACKAGE_DATA_DIR@ rm -rf ${DESTDIR}@PACKAGE_DATA_DIR@
EXTRA_DIST = player maps gfx tileset

Loading…
Cancel
Save