1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
## Pingus - A free Lemmings clone
## Copyright (C) 2010 Ingo Ruhnke <grumbel@gmx.de>
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
DESTDIR =
PREFIX = /usr/local
DATADIR = $(PREFIX)/share/pingus
MANDIR = $(PREFIX)/share/man
BINDIR = $(PREFIX)/bin
build/pingus:
mkdir -p build
scons src
scons
ln -fs build/pingus
clean:
rm -rf .sconf_temp/
rm -f .sconsign.dblite
rm -rf build/
rm -f pingus
scons -c
install: install-exec install-data install-man
install-exec: build/pingus
install -d "$(DESTDIR)$(BINDIR)"
install -D build/pingus "$(DESTDIR)$(BINDIR)/pingus.bin"
echo -e "#!/bin/sh\nexec \"$(BINDIR)/pingus.bin\" --datadir \"$(DATADIR)\"" > "$(DESTDIR)$(BINDIR)/pingus"
chmod 755 "$(DESTDIR)$(BINDIR)/pingus"
install-data:
cd data/ && \
find . \
-type f -a \( \
-name "*.png" -o \
-name "*.jpg" -o \
-name "*.wav" -o \
-name "*.scm" -o \
-name "*.font" -o \
-name "*.story" -o \
-name "*.credits" -o \
-name "*.prefab" -o \
-name "*.it" -o \
-name "*.ogg" -o \
-name "*.s3m" -o \
-name "*.po" -o \
-name "*.worldmap" -o \
-name "*.res" -o \
-name "*.pingus" -o \
-name "*.levelset" -o \
-name "*.sprite" \
\) -exec install -D {} $(DESTDIR)$(DATADIR)/{} \;
install-man:
install -D doc/man/pingus.6 "$(DESTDIR)$(MANDIR)/man1/pingus.6"
.PHONY : clean install install-exec install-data install-man
# EOF #
|