Makefile
上传用户:cj1251
上传日期:2021-10-26
资源大小:14k
文件大小:1k
- #
- # *******************************************************************
- # * Scribbler *
- # * *
- # * Author: Arash Partow (1999) *
- # * *
- # * Copyright notice: *
- # * Free use of the String Tool Kit Library is permitted under the *
- # * guidelines and in accordance with the most current version of *
- # * the Common Public License. *
- # * http://www.opensource.org/licenses/cpl1.0.php *
- # * *
- # *******************************************************************
- #
- COMPILER = -javac
- BUILD_LIST+=Scribbler
- all: clean $(BUILD_LIST)
- Scribbler: Scribble.java
- $(COMPILER) Scribble.java
- jar cvf scribble.jar *.class
- clean:
- rm -rf *.class *.jar *~