aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam <adamdharrison@gmail.com>2022-09-15 16:19:37 -0400
committerAdam <adamdharrison@gmail.com>2022-09-15 16:19:37 -0400
commitffe7944b6ef36204d59fd04b12ea7119942c9fd5 (patch)
treef1f00320bcecb2e4b8403ae2c6c20405852c5f49
parente1be17d5ad553a78e24e9744461d1fd682dca54b (diff)
downloadlite-xl-plugin-manager-ffe7944b6ef36204d59fd04b12ea7119942c9fd5.tar.gz
lite-xl-plugin-manager-ffe7944b6ef36204d59fd04b12ea7119942c9fd5.zip
Fixed build script.
-rw-r--r--README.md2
-rwxr-xr-xbuild.sh2
2 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6d13985..cfa2bd0 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,8 @@ Can be used by a package manager plugin that works from inside the editor and ca
Releases forthcoming, should be available on Windows, Mac, Linux and FreeBSD.
+Also contains a plugin_manager.lua plugin to integrate the binary with lite in the form of an easy-to-use GUI.
+
## Quickstart
If you have a C compiler, and `git`, and want to compile from scratch, you can do:
diff --git a/build.sh b/build.sh
index 4d57570..599bcc3 100755
--- a/build.sh
+++ b/build.sh
@@ -38,4 +38,4 @@ xxd -i lpm.lua > lpm.lua.c
[[ $OSTYPE == 'msys'* || $CC == *'mingw'* ]] && LDFLAGS="$LDFLAGS -lws2_32 -lz -lwinhttp -lole32 -lcrypt32 -lrpcrt4"
[[ "$@" != *" -g "* || "$@" != *" -O"* ]] && CFLAGS="$CFLAGS -O3" && LDFLAGS="$LDFLAGS -s"
-$CC $CFLAGS $SRCS $@ -o lpm $LDFLAGS
+$CC $CFLAGS $SRCS $@ -o $BIN $LDFLAGS