Makefile
上传用户:cj1251
上传日期:2021-10-26
资源大小:14k
文件大小:1k
源码类别:

Applet

开发平台:

Java

  1. #
  2. # *******************************************************************
  3. # *                         Scribbler                               *
  4. # *                                                                 *
  5. # * Author: Arash Partow (1999)                                     *
  6. # *                                                                 *
  7. # * Copyright notice:                                               *
  8. # * Free use of the String Tool Kit Library is permitted under the  *
  9. # * guidelines and in accordance with the most current version of   *
  10. # * the Common Public License.                                      *
  11. # * http://www.opensource.org/licenses/cpl1.0.php                   *
  12. # *                                                                 *
  13. # *******************************************************************
  14. #
  15. COMPILER = -javac
  16. BUILD_LIST+=Scribbler
  17. all: clean $(BUILD_LIST)
  18. Scribbler: Scribble.java
  19. $(COMPILER) Scribble.java
  20. jar cvf scribble.jar *.class
  21. clean:
  22. rm -rf *.class *.jar *~