2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / tools / linker / Makefile
1 thisdir = tools/linker
2 SUBDIRS =
3 include ../../build/rules.make
4
5 PROGRAM_SNK = ../../class/mono.snk
6
7 RESOURCES = \
8         Descriptors/mscorlib.xml        \
9         Descriptors/System.xml          \
10         Descriptors/System.Drawing.xml  \
11         Descriptors/System.Web.xml              \
12         Descriptors/Mono.Posix.xml              \
13
14 PROGRAM = $(topdir)/class/lib/$(PROFILE)/monolinker.exe
15
16 $(PROGRAM): $(RESOURCES)
17
18 LOCAL_MCS_FLAGS = /r:Mono.Cecil.dll /r:System.Xml.dll -keyfile:$(PROGRAM_SNK) $(RESOURCES:%=-resource:%)
19
20 EXTRA_DISTFILES = $(RESOURCES)
21
22 include ../../build/executable.make