branch: elpa/clojure-ts-mode commit e101674bacd4a3fc7283d1362d4e095318d404be Author: dannyfreeman <danny@dfreeman.email> Commit: dannyfreeman <danny@dfreeman.email>
Typos!! --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 34c889f969..84e8dea138 100644 --- a/README.md +++ b/README.md @@ -26,20 +26,21 @@ For now, users must do it themselves manually, which requires that a c compiler To start, clone [tree-sitter-clojure](https://github.com/dannyfreeman/tree-sitter-clojure). -The run the following code (depending on your OS) from the tree-sitter-clojure repository on your machine. +Then run the following code (depending on your OS) from the tree-sitter-clojure repository on your machine. +(A C compiler like GCC is required) ### Linux ```bash -mkdir -f dist +mkdir -p dist cc -c -I./src src/parser.c -o "parser.o" -cc -fPIC -shared src/parser.o -o "dist/libtree-sitter-clojure.so +cc -fPIC -shared src/parser.o -o "dist/libtree-sitter-clojure.so" ``` ### OS X ```bash -mkdir -f dist +mkdir -p dist cc -c -I./src src/parser.c -o "parser.o" -cc -fPIC -shared src/parser.o -o "dist/libtree-sitter-clojure.dylib +cc -fPIC -shared src/parser.o -o "dist/libtree-sitter-clojure.dylib" ``` ### Windows