home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume21 / p2c / part01 / Makefile next >
Makefile  |  1990-04-05  |  2KB  |  49 lines

  1. # Makefile for "p2c", the Pascal to C translator.
  2. #  Copyright (C) 1989 David Gillespie.
  3. #  Author's address: daveg@csvax.caltech.edu; 256-80 Caltech/Pasadena CA 91125.
  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 (any version).
  8.  
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13.  
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; see the file COPYING.  If not, write to
  16. # the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18.  
  19.  
  20. # This file compiles and installs p2c in the "home" subdirectory of this
  21. # directory, then runs it on various example programs in the "examples"
  22. # subdirectory.  To install a permanent, public copy of p2c, see "README"
  23. # and src/Makefile.
  24.  
  25. test:
  26.     @echo "Compiling p2c, installing in `pwd`/home..."
  27.     cd src; make install
  28.     @echo ""
  29.     @echo "Translating and compiling example files..."
  30.     cd examples; make comp
  31.     @echo ""
  32.     @echo "Running the factorial example..."
  33.     examples/fact
  34.     @echo ""
  35.     @echo "Running the 'e' computation example..."
  36.     examples/e
  37.     @echo ""
  38.     @echo "Running the self-printing Pascal example..."
  39.     examples/self >examples/self.out
  40.     cat examples/self.out
  41.     diff examples/self.p examples/self.out
  42.     @echo ""
  43.     @echo "Also try 'cref' and 'basic' in the examples directory."
  44.  
  45.  
  46. install:
  47.     cd src; make install
  48.  
  49.