diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-11-26 03:38:18 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-11-26 03:38:18 +0100 |
commit | 778b6554c96663eb77f7690a0f161e3985e0d59d (patch) | |
tree | 7247c49ed7355a0713b9d8e06492d6077240c365 /Makefile | |
download | rotation3d-778b6554c96663eb77f7690a0f161e3985e0d59d.tar.gz rotation3d-778b6554c96663eb77f7690a0f161e3985e0d59d.tar.bz2 rotation3d-778b6554c96663eb77f7690a0f161e3985e0d59d.tar.xz |
first commit
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7e724d6 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +JAVAC = javac + +.PHONY: all +all: + @mkdir -p bin + $(JAVAC) -cp src -s src -d bin src/v/D3.java + + +.PHONY: clean +clean: + -rm -r bin + |