aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2012-03-31 00:45:54 +0200
committerJakob Odersky <jodersky@gmail.com>2012-03-31 00:45:54 +0200
commit19465954788d87554265f4d8c04c74bdfc05ad07 (patch)
tree26e371b8b630e0219ea1603fb833caf17282c966 /Makefile
downloadk8055-19465954788d87554265f4d8c04c74bdfc05ad07.tar.gz
k8055-19465954788d87554265f4d8c04c74bdfc05ad07.tar.bz2
k8055-19465954788d87554265f4d8c04c74bdfc05ad07.zip
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0f2f9b3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+
+all: compile copy
+
+compile:
+ make -C src
+
+copy: compile mkdirs
+ cp src/*.so target/lib
+ cp src/*.h target/include
+
+clean:
+ make clean -C src
+ rm -rf target
+
+mkdirs:
+ mkdir -p target
+ mkdir -p target/lib
+ mkdir -p target/include
+
+doc:
+ doxygen Doxyfile