diff options
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | build.sh | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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: @@ -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 |