home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mitsch75.zip / scheme-7_5_17-src.zip / scheme-7.5.17 / src / Makefile.std < prev    next >
Makefile  |  2000-12-08  |  1KB  |  55 lines

  1. # $Id: Makefile.std,v 1.11 2000/12/08 17:53:58 cph Exp $
  2. #
  3. # Copyright (c) 2000 Massachusetts Institute of Technology
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or (at
  8. # your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful, but
  11. # WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. # General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. # Standard Makefile for Scheme subsystem directories.
  20. # This makefile supports some utilities for Scheme subsystems.
  21. # Tools to rebuild these subsystems are written in Scheme and do not
  22. # use `make'.
  23.  
  24. SHELL = /bin/sh
  25.  
  26. all:
  27.     echo "No ALL action"
  28.  
  29. mostlyclean clean distclean maintainer-clean:
  30.     ./Clean.sh $@
  31.  
  32. tags TAGS:
  33.     ./Tags.sh
  34.  
  35. stage1:
  36.     ./Stage.sh make 1
  37.  
  38. unstage1:
  39.     ./Stage.sh unmake 1
  40.  
  41. stage2:
  42.     ./Stage.sh make 2
  43.  
  44. unstage2:
  45.     ./Stage.sh unmake 2
  46.  
  47. stage3:
  48.     ./Stage.sh make 3
  49.  
  50. unstage3:
  51.     ./Stage.sh unmake 3
  52.  
  53. .PHONY: all mostlyclean clean distclean maintainer-clean tags TAGS
  54. .PHONY: stage1 unstage1 stage2 unstage2 stage3 unstage3
  55.