From 062896a2fd5390a31dea4047f56789e7b0ccf63e Mon Sep 17 00:00:00 2001 From: mitchell <70453897+orbitalquark@users.noreply.github.com> Date: Thu, 17 Mar 2022 13:56:55 -0400 Subject: [PATCH] Include the target shared object file in compile instructions. --- README.md | 8 ++++---- init.lua | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e0222af..ed2ae08 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,10 @@ It provides utilities for editing YAML documents. ## Compiling -Releases include binaries, so building this modules should not be necessary. If you want to -build manually, run `make deps` followed by `make`. This assumes the module is installed -in Textadept's *modules/* directory. If it is not (e.g. it is in your `_USERHOME`), run -`make ta=/path/to/textadept`. +Releases include binaries, so building this modules should not be necessary. If you want +to build manually, run `make deps` followed by `make yaml.so`. This assumes the module is +installed in Textadept's *modules/* directory. If it is not (e.g. it is in your `_USERHOME`), +run `make ta=/path/to/textadept yaml.so`. ## Key Bindings diff --git a/init.lua b/init.lua index a950572..df4a6b1 100644 --- a/init.lua +++ b/init.lua @@ -9,10 +9,10 @@ local M = {} -- -- ### Compiling -- --- Releases include binaries, so building this modules should not be necessary. If you want to --- build manually, run `make deps` followed by `make`. This assumes the module is installed --- in Textadept's *modules/* directory. If it is not (e.g. it is in your `_USERHOME`), run --- `make ta=/path/to/textadept`. +-- Releases include binaries, so building this modules should not be necessary. If you want +-- to build manually, run `make deps` followed by `make yaml.so`. This assumes the module is +-- installed in Textadept's *modules/* directory. If it is not (e.g. it is in your `_USERHOME`), +-- run `make ta=/path/to/textadept yaml.so`. -- -- ### Key Bindings --