~cszikszoy/do-plugins/fix-confluence

« back to all changes in this revision

Viewing changes to ImageShack/Makefile.am

  • Committer: Jason Jones
  • Date: 2008-08-23 08:53:24 UTC
  • mto: This revision was merged to the branch mainline in revision 247.
  • Revision ID: jasonedwardjones@gmail.com-20080823085324-frisaleem8e6untk
Added ImageShack plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
EXTRA_DIST =  
 
3
 
 
4
if ENABLE_DEBUG
 
5
ASSEMBLY_COMPILER_COMMAND = gmcs
 
6
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -optimize+ -debug "-define:DEBUG"
 
7
 
 
8
ASSEMBLY = bin/Debug/ImageShack.dll
 
9
ASSEMBLY_MDB = $(ASSEMBLY).mdb
 
10
COMPILE_TARGET = library
 
11
PROJECT_REFERENCES = 
 
12
BUILD_DIR = bin/Debug
 
13
 
 
14
 
 
15
endif
 
16
 
 
17
if ENABLE_RELEASE
 
18
ASSEMBLY_COMPILER_COMMAND = gmcs
 
19
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -optimize+
 
20
ASSEMBLY = bin/Release/ImageShack.dll
 
21
ASSEMBLY_MDB = 
 
22
COMPILE_TARGET = library
 
23
PROJECT_REFERENCES = 
 
24
BUILD_DIR = bin/Release
 
25
 
 
26
 
 
27
endif
 
28
 
 
29
AL=al2
 
30
SATELLITE_ASSEMBLY_NAME=.resources.dll
 
31
 
 
32
all: $(ASSEMBLY)
 
33
 
 
34
FILES = \
 
35
        src/ImageShackAction.cs 
 
36
 
 
37
DATA_FILES = 
 
38
 
 
39
RESOURCES = \
 
40
        src/ImageShack.addin.xml \
 
41
        resources/imageshack.png 
 
42
 
 
43
REFERENCES =  \
 
44
        System \
 
45
        Mono.Posix \
 
46
        System.Web \
 
47
        $(GTK_SHARP_20_LIBS) \
 
48
        $(GCONF_SHARP_20_LIBS) \
 
49
        $(DOADDINS_LIBS)
 
50
 
 
51
DLL_REFERENCES = 
 
52
 
 
53
CLEANFILES = 
 
54
 
 
55
include $(top_srcdir)/Makefile.include
 
56
 
 
57
 
 
58
$(build_xamlg_list): %.xaml.g.cs: %.xaml
 
59
        xamlg '$<'
 
60
 
 
61
$(build_resx_resources) : %.resources: %.resx
 
62
        resgen2 '$<' '$@'
 
63
 
 
64
$(ASSEMBLY) $(ASSEMBLY_MDB): $(build_sources) $(build_resources) $(build_datafiles) $(DLL_REFERENCES) $(PROJECT_REFERENCES) $(build_xamlg_list) $(build_satellite_assembly_list)
 
65
        mkdir -p $(dir $(ASSEMBLY))
 
66
        $(ASSEMBLY_COMPILER_COMMAND) $(ASSEMBLY_COMPILER_FLAGS) -out:$(ASSEMBLY) -target:$(COMPILE_TARGET) $(build_sources_embed) $(build_resources_embed) $(build_references_ref)