~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to File/Makefile.am

Make build system sane

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
EXTRA_DIST=CreateEmptyFileAction.cs
2
 
 
3
 
ASSEMBLY_NAME=File
4
 
ASSEMBLY=$(ASSEMBLY_NAME).dll
5
 
 
6
 
CLEANFILES = $(ASSEMBLY){,.mdb}
7
 
 
8
 
CSFLAGS += -debug+ -debug:full
9
 
 
10
 
file_references=$(DO_ADDINS_LIBS)
11
 
 
12
 
file_sources= \
13
 
                CreateEmptyFileAction.cs
14
 
 
15
 
file_build_sources = $(addprefix $(srcdir)/,$(file_sources))
16
 
 
17
 
plugin_DATA = $(ASSEMBLY)
18
 
 
19
 
all: $(ASSEMBLY)
20
 
 
21
 
$(ASSEMBLY): $(file_build_sources)
22
 
        $(CSC) $(CSFLAGS) $(file_references) -target:library -out:$@ $(file_build_sources)
23