~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to LocateFiles/Makefile.am

  • Committer: Richard Harding
  • Date: 2008-03-22 02:36:12 UTC
  • Revision ID: rharding@traken-20080322023612-1k329velnao3h83m
 * correct the source header of the AptUrl plugin 

Show diffs side-by-side

added added

removed removed

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