home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Add-Ons / MPW / MPW fixit / MakeFile < prev   
Encoding:
Makefile  |  1996-03-02  |  953 b   |  46 lines  |  [TEXT/MPS ]

  1. #
  2. # File MakeFile Copyright (C) 1996 by John R. Montbriand.  All Rights Reserved.
  3. #
  4. # File MakeFile
  5. # Copyright (C) 1996 by John Montbriand.  All Rights Reserved.
  6. # Distribute freely in areas where the laws of copyright apply.
  7. # Use at your own risk.
  8. # Do not distribute modified copies.
  9. # These various fixmath routines and libraries are for free!
  10. # See the file fixit.txt for details.
  11.  
  12. fixit ƒ y.tab.c.o lex.yy.c.o fixit.c.o
  13.     Link -w -o fixit ∂
  14.         -t MPST -c 'MPS ' ∂
  15.         y.tab.c.o ∂
  16.         lex.yy.c.o ∂
  17.         fixit.c.o ∂
  18.         {Libraries}Stubs.o ∂
  19.         {CLibraries}StdCLib.o ∂
  20.         {Libraries}MathLib.o ∂
  21.         {Libraries}Interface.o ∂
  22.         {Libraries}MacRuntime.o ∂
  23.         {Libraries}IntEnv.o
  24.  
  25. fixit.c.o ƒ fixit.c fixit.h
  26.     SC -w off -b fixit.c -o fixit.c.o
  27.  
  28. y.tab.c.o ƒ y.tab.c fixit.h
  29.     SC -w off -b y.tab.c -o y.tab.c.o
  30.  
  31. lex.yy.c.o ƒ lex.yy.c
  32.     SC -w off -b lex.yy.c -o lex.yy.c.o
  33.  
  34. lex.yy.c ƒ fixit.l y.tab.c
  35.     flex -i fixit.l
  36.  
  37. y.tab.c ƒ fixit.y
  38.     yacc -d fixit.y
  39.