mirror of
https://libwebsockets.org/repo/libwebsockets
synced 2024-11-23 17:37:33 +00:00
c6496b2510
AG: enhance the script a bit and fix the make instructions
18 lines
241 B
Bash
Executable File
18 lines
241 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -z "$1" ] ; then
|
|
OUT=$1
|
|
else
|
|
OUT="/tmp/lws-abi-track-htdocs"
|
|
fi
|
|
|
|
D=`dirname $0`
|
|
if [ ! -z "$D" ] ; then
|
|
D=$D/
|
|
fi
|
|
J=$D"libwebsockets.json"
|
|
|
|
abi-monitor -get -build-new $J
|
|
abi-tracker -build $J
|
|
abi-tracker -deploy $OUT $J
|