~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to SimplePlugins/Makefile.am

Make build system sane

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
plugins_sources := $(wildcard *.cs)
2
 
plugins_binaries := $(patsubst %.cs, %.dll, $(plugins_sources))
3
 
 
4
 
plugins_build_sources := $(addprefix $(srcdir)/, $(plugins_sources))
5
 
 
6
 
EXTRA_DIST = $(plugins_sources)
7
 
 
8
 
CSFLAGS+= -debug+ -debug:full
9
 
 
10
 
plugins_references = $(DO_ADDINS_LIBS) $(DO_DBUS_LIBS)
11
 
 
12
 
CLEANFILES = $(plugins_binaries) $(foreach dll,$(plugins_binaries), $(dll).mdb)
13
 
 
14
 
plugin_DATA = $(plugins_binaries)
15
 
 
16
 
all: $(plugins_binaries)
17
 
 
18
 
%.dll : %.cs
19
 
        $(CSC) $(CSFLAGS) $(plugins_references) -target:library -out:$@ $<