summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2015-10-08 07:14:37 +0200
committerChristian Pointner <equinox@spreadspace.org>2015-10-08 07:14:37 +0200
commitdae1b7193f97daff6e516463fbf39b65ef584b65 (patch)
tree7576518ea6b60e8544154cf9c4421b511b32c881 /README
initial commit with fimware code of avr-projects
Diffstat (limited to 'README')
-rw-r--r--README43
1 files changed, 43 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..b12b00d
--- /dev/null
+++ b/README
@@ -0,0 +1,43 @@
+Dependencies
+============
+
+App:
+----
+
+ build-essential
+ liblo-dev
+ libasound2-dev
+
+if you want clang as compiler
+ clang
+
+
+Firmware:
+---------
+
+ spreadspace avr utils (and everything these depend on)
+
+
+Build
+=====
+
+Getting the source via GIT:
+---------------------------
+
+git clone git://git.spreadspace.org/dolmetschctl.git
+cd dolmetschctl
+make -C contrib/
+
+The last step can also be done manually:
+
+# checkout avr-utils from git:
+
+cd contrib
+git clone git://git.spreadspace.org/avr-utils.git
+cd ..
+
+# or just add a link to a local copy of the uitls
+
+cd contrib
+ln -s /path/to/local/copy/of/avrutils/ avr-utils
+cd ..