9 lines
156 B
Makefile
9 lines
156 B
Makefile
|
all: native
|
||
|
|
||
|
native:
|
||
|
gcc -shared -fPIC jabberclient.c ../qvm_api.c ../plugin.c -o jabberx86.so
|
||
|
|
||
|
install: native
|
||
|
cp jabberx86.so /opt/quake/fte/plugins/
|
||
|
|