summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsc2000-11-28 17:12:09 +0000
committersc2000-11-28 17:12:09 +0000
commit535c0e46f0f23b7648a98a5b42068b557926836a (patch)
tree627489df57f1892ab94c68258c3e7c1d6c24a578
parent6d22cc76d9039b1eb6e730d37ed43a6c3bccf0b7 (diff)
downloadivy-league-535c0e46f0f23b7648a98a5b42068b557926836a.zip
ivy-league-535c0e46f0f23b7648a98a5b42068b557926836a.tar.gz
ivy-league-535c0e46f0f23b7648a98a5b42068b557926836a.tar.bz2
ivy-league-535c0e46f0f23b7648a98a5b42068b557926836a.tar.xz
Simple Makefile for package building
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..64c4fac
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,15 @@
+all:
+ cd utils ; make
+ cd dnn ; make
+ cd comm ; make
+
+install:
+ cd utils ; make install
+ cd dnn ; make install
+ cd comm ; make install
+
+clean:
+ cd utils ; make clean
+ cd dnn ; make clean
+ cd comm ; make clean
+