Makefile.am 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ## $Id: Makefile.am,v 1.6 2003/08/18 08:50:22 grumbel Exp $
  2. ##
  3. ## Windstille - A free Lemmings clone
  4. ## Copyright (C) 2002 Ingo Ruhnke <grumbel@gmx.de>
  5. ##
  6. ## This program is free software; you can redistribute it and/or
  7. ## modify it under the terms of the GNU General Public License
  8. ## as published by the Free Software Foundation; either version 2
  9. ## of the License, or (at your option) any later version.
  10. ##
  11. ## This program is distributed in the hope that it will be useful,
  12. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ## GNU General Public License for more details.
  15. ##
  16. ## You should have received a copy of the GNU General Public License
  17. ## along with this program; if not, write to the Free Software
  18. ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. SUBDIRS = src data
  20. EXTRA_DIST = INSTALL.configure BUGS AUTHORS
  21. dist-binary: distdir
  22. cd src && $(MAKE) windstille.static
  23. $(mkinstalldirs) $(distdir)/share/guile/ $(distdir)/lib/
  24. cp -R /usr/share/guile/1.6/ice-9/ $(distdir)/share/guile/
  25. cp -R /usr/share/guile/1.6/oop/ $(distdir)/share/guile/
  26. cp -R /usr/share/guile/1.6/srfi/ $(distdir)/share/guile/
  27. cp /lib/libgcc_s.so.1 /lib/libc.so.6 /lib/libpthread.so.0 /lib/ld-linux.so.2 $(distdir)/lib/
  28. cp src/windstille.static $(distdir)/src/
  29. cp contrib/windstille.sh $(distdir)/windstille
  30. mv $(distdir) $(distdir)-binary-i386
  31. $(AMTAR) chof - $(distdir)-binary-i386 | bzip2 -9 -c >$(distdir)-binary-i386.tar.bz2
  32. mv $(distdir)-binary-i386 $(distdir)
  33. $(am__remove_distdir)
  34. # EOF #