forked from trevordevore/SSH-External-for-LiveCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·11 lines (8 loc) · 761 Bytes
/
Makefile
File metadata and controls
executable file
·11 lines (8 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
test: test.c
gcc test.c -lssh -o test
livessh.so: livessh.c external.h external.c
gcc -O -I. -L.-D_LINUX -D_RELEASE -DNDEBUG -DRELEASE -Xlinker -no-undefined -fno-exceptions -Wl,-Bstatic -Wl,-Bdynamic -static -shared livessh.c external.c -o livessh.so -lssh
livessh.dll: livessh.c external.h external.c
gcc -I. -Ilibssh/include -Llibssh/bin -Llibssh/lib -D_WIN32 -D_RELEASE -DNDEBUG -DRELEASE livessh.c external.c -Xlinker -no-undefined -fno-exceptions -Wl,-Bstatic -Wl,-Bdynamic -shared -o livessh.dll -lssh
livessh: livessh.c external.h external.c
gcc -I. -Ilibssh/include -Llibssh/bin -Llibssh/lib -D_MACOSX -D_RELEASE -DNDEBUG -DRELEASE livessh.c external.c -Xlinker -no-undefined -fno-exceptions -Wl,-Bstatic -Wl,-Bdynamic -shared -o livessh -lssh