Files
purple-plugin-delta/Makefile
Nick Thomas de213f2b7a Initial integration with libdeltachat
This implements configuration, connection, sending and receiving IMs in the
simplest possible way. Lots and lots of cases are not handled.
2018-05-07 01:47:00 +01:00

19 lines
314 B
Makefile

CC ?= gcc
PREFIX ?= /usr/local
libdelta.so: *.c *.h Makefile
$(CC) -C \
-Wall -Wextra -Werror \
-std=c11 \
-shared \
-fpic \
$(shell pkg-config --cflags purple libsoup-2.4) \
-o libdelta.so \
*.c \
-shared \
$(shell pkg-config --libs purple libsoup-2.4) \
-ldeltachat
clean:
rm libdelta.so