home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / p / pascal-.zip / pascal- / Makefile next >
Makefile  |  1993-01-06  |  259b  |  27 lines

  1. # $Id$
  2. # Pascal- processor example
  3.  
  4. all:    code paper
  5.  
  6. code:    src input
  7.     eli <mk
  8.     try
  9.  
  10. paper:    tex
  11.     eli <mkd
  12.  
  13. tidy:
  14.     rm -rf ELI ERRS a.out core *.o
  15.  
  16. clean:    tidy
  17.     rm -rf src tex input *.exe
  18.  
  19. src:
  20.     mkdir src
  21.  
  22. tex:
  23.     mkdir tex
  24.  
  25. input:
  26.     ln tests/conformance/gcd input
  27.