~cszikszoy/do-plugins/fix-confluence

« back to all changes in this revision

Viewing changes to VolumeControl/Makefile.am

  • Committer: Alex Launi
  • Date: 2009-01-09 09:05:05 UTC
  • mfrom: (413.1.45 build-fixins)
  • Revision ID: alex.launi@gmail.com-20090109090505-47e4prpey8eb0903
Merge massive plugins tree cleanup, and autofoo build fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
EXTRA_DIST =  
3
 
 
4
 
# Warning: This is an automatically generated file, do not edit!
5
 
 
6
 
if ENABLE_DEBUG
7
 
ASSEMBLY_COMPILER_COMMAND = gmcs
8
 
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -optimize+ -debug "-define:DEBUG"
9
 
ASSEMBLY = bin/Debug/VolumeControl.dll
10
 
ASSEMBLY_MDB = $(ASSEMBLY).mdb
11
 
COMPILE_TARGET = library
12
 
PROJECT_REFERENCES = 
13
 
BUILD_DIR = bin/Debug
14
 
 
15
 
VOLUMECONTROL_DLL_MDB_SOURCE=bin/Debug/VolumeControl.dll.mdb
16
 
VOLUMECONTROL_DLL_MDB=$(BUILD_DIR)/VolumeControl.dll.mdb
17
 
 
18
 
endif
19
 
 
20
 
if ENABLE_RELEASE
21
 
ASSEMBLY_COMPILER_COMMAND = gmcs
22
 
ASSEMBLY_COMPILER_FLAGS =  -noconfig -codepage:utf8 -warn:4 -optimize+
23
 
ASSEMBLY = bin/Release/VolumeControl.dll
24
 
ASSEMBLY_MDB = 
25
 
COMPILE_TARGET = library
26
 
PROJECT_REFERENCES = 
27
 
BUILD_DIR = bin/Release
28
 
 
29
 
VOLUMECONTROL_DLL_MDB=
30
 
 
31
 
endif
32
 
 
33
 
AL=al2
34
 
SATELLITE_ASSEMBLY_NAME=$(notdir $(basename $(ASSEMBLY))).resources.dll
35
 
 
36
 
PROGRAMFILES = \
37
 
        $(VOLUMECONTROL_DLL_MDB)  
38
 
 
39
 
LINUX_PKGCONFIG = \
40
 
        $(VOLUMECONTROL_PC)  
41
 
 
42
 
 
43
 
RESGEN=resgen2
44
 
        
45
 
all: $(ASSEMBLY) $(PROGRAMFILES) $(LINUX_PKGCONFIG) 
 
1
include $(top_srcdir)/build.rules.mk
 
2
 
 
3
ASSEMBLY=VolumeControl
46
4
 
47
5
FILES = \
48
6
        src/VolumeUpItem.cs \
49
7
        src/VolumeDownItem.cs \
50
8
        src/VolumeMuteItem.cs \
51
9
        src/VolumeUnmuteItem.cs \
52
 
        src/VolumeItemSource.cs 
53
 
 
54
 
DATA_FILES = 
 
10
        src/VolumeItemSource.cs
55
11
 
56
12
RESOURCES = \
57
 
        VolumeControl.addin.xml 
58
 
 
59
 
EXTRAS = \
60
 
        volumecontrol.pc.in 
61
 
 
62
 
REFERENCES =  \
 
13
        Resources/VolumeControl.addin.xml 
 
14
 
 
15
REFERENCES = \
 
16
        Mono.Posix \
63
17
        System \
64
 
        Do.Addins \
65
 
        Mono.Posix
66
 
 
67
 
DLL_REFERENCES = 
68
 
 
69
 
CLEANFILES = $(PROGRAMFILES) $(LINUX_PKGCONFIG) 
70
 
 
71
 
include $(top_srcdir)/Makefile.include
72
 
 
73
 
VOLUMECONTROL_PC = $(BUILD_DIR)/volumecontrol.pc
74
 
 
75
 
$(eval $(call emit-deploy-wrapper,VOLUMECONTROL_PC,volumecontrol.pc))
76
 
 
77
 
 
78
 
$(eval $(call emit_resgen_targets))
79
 
$(build_xamlg_list): %.xaml.g.cs: %.xaml
80
 
        xamlg '$<'
81
 
 
82
 
$(ASSEMBLY) $(ASSEMBLY_MDB): $(build_sources) $(build_resources) $(build_datafiles) $(DLL_REFERENCES) $(PROJECT_REFERENCES) $(build_xamlg_list) $(build_satellite_assembly_list)
83
 
        mkdir -p $(shell dirname $(ASSEMBLY))
84
 
        $(ASSEMBLY_COMPILER_COMMAND) $(ASSEMBLY_COMPILER_FLAGS) -out:$(ASSEMBLY) -target:$(COMPILE_TARGET) $(build_sources_embed) $(build_resources_embed) $(build_references_ref)
 
18
        System.Core \
 
19
        $(DO_PLATFORM_LIBS) \
 
20
        $(DO_UNIVERSE_LIBS)