Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorJean-Marc Valin <jean-marc.valin@octasic.com>2010-07-05 22:55:02 +0400
committerJean-Marc Valin <jean-marc.valin@octasic.com>2010-07-05 22:55:02 +0400
commit8ba2a779eafd7996810ce9a8e8d75f05ecddd78a (patch)
tree2a75998e19049f06e6c5953b1088bf5c2b14ce72 /README
parent6c3b0658204f3f8f217a3c33e14657dd780c0a73 (diff)
Toplevel Makefile, some project info
Diffstat (limited to 'README')
-rw-r--r--README19
1 files changed, 17 insertions, 2 deletions
diff --git a/README b/README
index b677cc6b..43ccd547 100644
--- a/README
+++ b/README
@@ -1,5 +1,20 @@
This is a prototype codec and for now it doesn't do anything useful. To get
the celt and silk submodules, you need to do:
-git submodule init
-git submodule update
+% git submodule init
+% git submodule update
+
+Compiling is currently tricky. You first need to configure the CELT directory:
+
+% cd celt
+% ./autogen.sh
+% ./configure --disable-shared
+% cd ..
+
+Then you can use the top-level Makefile by typing:
+
+% make
+
+If you're lucky, then everything works. Most likely there will be an error in
+one of the paths that are hardcoded into one of the makefiles. This should
+improve in the future.