home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / jikepg12.zip / jikespg / examples / expr / Makefile < prev    next >
Encoding:
Makefile  |  1999-11-04  |  426 b   |  15 lines

  1. # This software is subject to the terms of the IBM Jikes Compiler
  2. # License Agreement available at the following URL:
  3. # http://www.ibm.com/research/jikes.
  4. # Copyright (C) 1983, 1999, International Business Machines Corporation
  5. # and others.  All Rights Reserved.
  6. # You must accept the terms of that agreement to use this software.
  7.  
  8. all:
  9.     jikespg expr.g
  10.     jikes *.java
  11. clean:
  12.     rm expr*.java
  13.     rm expr.l
  14.     rm *.class
  15.