Get the Delta Chat plugin to show up in pidgin

This commit is contained in:
2018-05-02 00:05:28 +01:00
parent 4bde367dc0
commit 2f70ab2996
4 changed files with 322 additions and 0 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
CC ?= gcc
PREFIX ?= /usr/local
libdelta.so: *.c *.h
$(CC) -C \
-Wall -Wextra -Werror \
-std=c11 \
-shared \
-fpic \
$(shell pkg-config --cflags purple) \
-o libdelta.so \
*.c \
-shared \
$(shell pkg-config --libs purple)
clean:
rm libdelta.so