home *** CD-ROM | disk | FTP | other *** search
/ Best Tools for JAVA / Best Tools for JAVA.iso / JAVA_ALL / JAVA_UTL / C2JAVA / MAKEFILE < prev    next >
Encoding:
Text File  |  1996-04-17  |  1.4 KB  |  39 lines

  1. ##############################################################################
  2. #
  3. #  c2j          96/04/04   Chris Laffra
  4. #
  5. #  Copyright (c) 1995-1996 Morgan Stanley & Co., Inc. All Rights Reserved.
  6. #
  7. #  Permission to use, copy, modify, and distribute this software
  8. #  and its documentation for NON-COMMERCIAL purposes and without
  9. #  fee is hereby granted provided that this copyright notice
  10. #  appears in all copies. Please contact email: laffra@ms.com
  11. #  for further copyright and licensing information.
  12. #
  13. #  MORGAN STANLEY MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY
  14. #  OF THIS SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  15. #  TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  16. #  PARTICULAR PURPOSE, OR NON-INFRINGEMENT. MORGAN STANLEY SHALL NOT BE LIABLE
  17. #  FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  18. #  DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  19. #
  20. #  Please refer to the README file.
  21. #
  22. ##############################################################################
  23. #
  24. # tested with Lucid (SunOS C++ compiler: lcc) and VisualC++2.0 (cl) only, 
  25. # should work with any other though...
  26. #
  27. ##############################################################################
  28.  
  29. parser: parser.cpp                # uses Lucid
  30.     lcc -o parser parser.cpp
  31.     c2j parser
  32.  
  33. parser.exe: parser.cpp                # uses Visual C++
  34.     cl -o parser.exe parser.cpp
  35.     c2j parser
  36.  
  37. clean:
  38.     rm -rf __c2j_java__ c2j.zip parser parser.java
  39.