aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2016-01-03 12:45:37 +0000
committerRichard van der Hoff <richard@matrix.org>2016-01-03 12:45:37 +0000
commit9ac2c979fb25e57c2a8aab81de7fe0d427a437dc (patch)
tree16a154eb8f0786d7116bbf2f0cb0090da38fcc84 /Makefile
parent277ce56307aad8b5627baaf1766c9d931bf7560e (diff)
downloadpurple-matrix-9ac2c979fb25e57c2a8aab81de7fe0d427a437dc.tar.gz
Factor out common parts of Makefile and Makefile.mingw
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile32
1 files changed, 2 insertions, 30 deletions
diff --git a/Makefile b/Makefile
index 9a6f9d0..95c540b 100644
--- a/Makefile
+++ b/Makefile
@@ -4,42 +4,14 @@ CC=gcc
LIBS=purple json-glib-1.0 glib-2.0
PKG_CONFIG=pkg-config
-CFLAGS+=-DPURPLE_PLUGINS $(shell $(PKG_CONFIG) --cflags $(LIBS))
+CFLAGS+=$(shell $(PKG_CONFIG) --cflags $(LIBS))
CFLAGS+=-fPIC -DPIC
-CFLAGS+=-Wall -g -O0 -Werror
LDLIBS+=$(shell pkg-config --libs $(LIBS))
LDLIBS+=-lhttp_parser
PLUGIN_DIR_PURPLE = $(shell $(PKG_CONFIG) --variable=plugindir purple)
DATA_ROOT_DIR_PURPLE = $(shell $(PKG_CONFIG) --variable=datarootdir purple)
-
-# generate .d files when compiling
-CPPFLAGS+=-MMD
-
-OBJECTS=libmatrix.o matrix-api.o matrix-connection.o \
- matrix-event.o \
- matrix-json.o \
- matrix-room.o \
- matrix-roommembers.o \
- matrix-statetable.o \
- matrix-sync.o
TARGET=libmatrix.so
-all: $(TARGET)
-clean:
- rm -f $(OBJECTS) $(OBJECTS:.o=.d) $(TARGET)
-
-install:
- mkdir -p $(DESTDIR)$(PLUGIN_DIR_PURPLE)
- install -m 664 $(TARGET) $(DESTDIR)$(PLUGIN_DIR_PURPLE)
- for i in 16 22 48; do \
- mkdir -p $(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/$$i; \
- install -m 664 matrix-$${i}px.png $(DESTDIR)$(DATA_ROOT_DIR_PURPLE)/pixmaps/pidgin/protocols/$$i/matrix.png; \
- done
-
-
-$(TARGET): $(OBJECTS)
- $(LINK.o) -shared $^ $(LOADLIBES) $(LDLIBS) -o $@
-
--include $(OBJECTS:.o=.d)
+include Makefile.common