diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-08-20 15:11:08 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-08-20 15:11:08 +0200 |
commit | cb612a12b952e349b96d427645aaeb55d15f509a (patch) | |
tree | f29298f41d2a7ea2a976616243aca64c2c2547ce /plugins/Makefile | |
parent | e7be93745e4a2ff3aa255227bef7b9d3b733aafa (diff) | |
parent | 143bfc9f801c84428074312d661f8e08803df83b (diff) |
Merge tag 'upstream/0.23.5'
Upstream version 0.23.5
Diffstat (limited to 'plugins/Makefile')
-rw-r--r-- | plugins/Makefile | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/plugins/Makefile b/plugins/Makefile deleted file mode 100644 index c622063..0000000 --- a/plugins/Makefile +++ /dev/null @@ -1,33 +0,0 @@ - -include plugins.mk - -DIST_FILES := \ - Makefile \ - Makefile.plugin.mk \ - plugins.mk - -.PHONY: all -all: $(ALL_PLUGINS) - -.PHONY: $(ALL_PLUGINS) -$(ALL_PLUGINS): - @$(MAKE) --directory=$@ PLUGINS_VERSION="$(PLUGINS_VERSION)" USER_VALAFLAGS="$(USER_VALAFLAGS)" \ - PLUGIN_CFLAGS="$(PLUGIN_CFLAGS)" - -.PHONY: clean -clean: - $(foreach plugin,$(ALL_PLUGINS),$(MAKE) --directory=$(plugin) clean;) - -.PHONY: cleantemps -cleantemps: - $(foreach plugin,$(ALL_PLUGINS),$(MAKE) --directory=$(plugin) cleantemps;) - -.PHONY: distclean -distclean: - $(foreach plugin,$(ALL_PLUGINS),$(MAKE) --directory=$(plugin) distclean;) - -.PHONY: listfiles -listfiles: - @printf "$(foreach file,$(DIST_FILES), plugins/$(file)) " - @$(foreach plugin,$(ALL_PLUGINS),$(MAKE) --directory=$(plugin) --no-print-directory listfiles;) - |