~do-plugins/do-plugins/trunk

« back to all changes in this revision

Viewing changes to build.rules.mk

  • Committer: Christopher James Halse Rogers
  • Date: 2013-05-01 20:41:11 UTC
  • Revision ID: raof@ubuntu.com-20130501204111-fhr9g7rcal5l1m0s
build: Install .dll.config files as data

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
STD_REFERENCES = $(foreach ref,$(filter-out -r:%,$(REFERENCES)),-r:$(ref))
19
19
BUILD_REFERENCES = $(filter -r:%,$(REFERENCES) $(STD_REFERENCES))
20
20
 
21
 
OUTPUT_FILES = $(ASSEMBLY_FILE) $(DLL_CONFIG_FILES)
 
21
OUTPUT_FILES = $(ASSEMBLY_FILE)
22
22
if ENABLE_DEBUG
23
23
OUTPUT_FILES += $(ASSEMBLY_FILE).mdb
24
24
endif
25
25
 
26
26
# Install plugins as data; there's no need for them to be excutable
27
27
plugindir = ${libdir}/gnome-do/plugins
28
 
plugin_DATA = $(OUTPUT_FILES)
 
28
plugin_DATA = $(OUTPUT_FILES) $(DLL_CONFIG_FILES)
29
29
 
30
30
# All plugins should be translatable; every plugin will need to link to
31
31
# Mono.Addins for this.