summaryrefslogtreecommitdiff
path: root/plugins/Makefile.plugin.mk
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Makefile.plugin.mk')
-rw-r--r--plugins/Makefile.plugin.mk80
1 files changed, 0 insertions, 80 deletions
diff --git a/plugins/Makefile.plugin.mk b/plugins/Makefile.plugin.mk
deleted file mode 100644
index c26c672..0000000
--- a/plugins/Makefile.plugin.mk
+++ /dev/null
@@ -1,80 +0,0 @@
-
-# Generic plug-in Makefile for Shotwell standard plugins.
-#
-# Requires PLUGIN and SRC_FILES be set to the name of the plugin binary (minus extension) and that
-# the directory is registered in plugins.mk.
-#
-# To use, include this file in each plug-in directory's Makefile after setting appropriate variables.
-# Also be sure that each plug-in has a dummy_main() function to satisfy valac's linkage.
-#
-# NOTE: This file is called from the cwd of each directory, hence the relative paths should be
-# read as such.
-
-ifndef VALAC
-VALAC := valac
-endif
-MAKE_FILES := Makefile ../Makefile.plugin.mk ../plugins.mk
-HEADER_FILES := ../shotwell-plugin-dev-1.0.vapi ../shotwell-plugin-dev-1.0.h \
- ../shotwell-plugin-dev-1.0.deps
-
-include ../plugins.mk
-
-# automatically include shotwell-plugin-dev-1.0's dependencies
-# NOTE: This line will generate an error when running "make dist" from the master Makefile.
-# It can be safely ignored.
-PKGS := $(shell sed ':a;N;$$!ba;s/\n/ /g' ../shotwell-plugin-dev-1.0.deps) $(PKGS)
-
-# automatically include the shotwell-plugin-dev-1.0 package as a local dependency
-EXT_PKGS := $(PKGS)
-PKGS := shotwell-plugin-dev-1.0 $(PKGS) $(PLUGIN_PKGS)
-
-CFILES := $(notdir $(SRC_FILES:.vala=.c))
-OFILES := $(notdir $(SRC_FILES:.vala=.o))
-
-CFLAGS := $(shell pkg-config --print-errors --cflags $(EXT_PKGS) $(PLUGIN_PKGS)) \
- -nostdlib -export-dynamic $(PLUGIN_CFLAGS)
-LIBS := $(shell pkg-config --print-errors --libs $(EXT_PKGS) $(PLUGIN_PKGS))
-DEFINES := -D_VERSION='"$(PLUGINS_VERSION)"' -DGETTEXT_PACKAGE='"shotwell"'
-
-all: $(PLUGIN).so
-
-PLUGIN_EXTRAFLAGS ?= --vapidir=../common --pkg shotwell-plugin-common
-PLUGIN_EXTRALINKFLAGS ?= -L../common/ -lshotwell-plugin-common
-
-.stamp: $(SRC_FILES) $(MAKE_FILES) $(HEADER_FILES)
- $(VALAC) --target-glib=$(MIN_GLIB_VERSION) -g --enable-checking --fatal-warnings --ccode --enable-deprecated \
- --vapidir=../ $(foreach pkg,$(PKGS),--pkg=$(pkg)) $(foreach pkg,$(CUSTOM_VAPI_PKGS),--pkg=$(pkg)) \
- $(USER_VALAFLAGS) \
- $(PLUGIN_EXTRAFLAGS) \
- --vapidir=../../vapi \
- $(SRC_FILES)
- @touch .stamp
-
-$(CFILES): .stamp
- @
-
-.c.o:
- $(CC) -c $(CFLAGS) $(DEFINES) -I../.. -I ../common $<
-
-$(PLUGIN).so: $(OFILES)
- $(CC) $(LDFLAGS) -shared $(OFILES) $(LIBS) $(PLUGIN_EXTRALINKFLAGS) -o $@
-
-.PHONY: cleantemps
-cleantemps:
- @rm -f $(notdir $(SRC_FILES:.vala=.c)) $(notdir $(SRC_FILES:.vala=.o))
- @rm -f .stamp
-
-.PHONY: clean
-clean: cleantemps
- @rm -f $(PLUGIN).so $(OFILES) $(CFILES)
-
-.PHONY: distclean
-distclean: clean
-
-PLUGIN_DIR ?= $(PLUGIN)
-
-.PHONY: listfiles
-listfiles:
- @printf "plugins/$(PLUGIN_DIR)/Makefile $(foreach file,$(SRC_FILES),plugins/$(PLUGIN_DIR)/$(file)) "
- @printf "$(foreach rc,$(RC_FILES),plugins/$(PLUGIN_DIR)/$(rc)) "
-