diff options
| author | Mattias Andrée <maandree@operamail.com> | 2013-05-13 14:18:01 +0200 |
|---|---|---|
| committer | Mattias Andrée <maandree@operamail.com> | 2013-05-13 14:18:01 +0200 |
| commit | 7013986a37c43289dac8a83236e65f2a4696df92 (patch) | |
| tree | e24998fb37d467787d869df860811ef22641322e | |
| parent | add dependencies (diff) | |
| download | splashtool-7013986a37c43289dac8a83236e65f2a4696df92.tar.gz splashtool-7013986a37c43289dac8a83236e65f2a4696df92.tar.bz2 splashtool-7013986a37c43289dac8a83236e65f2a4696df92.tar.xz | |
add make file
Signed-off-by: Mattias Andrée <maandree@operamail.com>
| -rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e9146bd --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +all: bin/Assemble.class + +bin/Assemble.class: src/Assemble.java + mkdir -p bin + javac -cp src -s src -d bin src/Assemble.java + +clean: + -rm -r bin + |
