Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.am « mdrun « Tools « core « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e96e49e5ef75b87a4d61e52b6812cc6d2c28e7e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

ASSEMBLY = $(top_builddir)/build/bin/mdrun.exe

FILES = src/AssemblyInfo.cs \
src/mdrun.cs

all: $(ASSEMBLY) $(ASSEMBLY).config

REFS = -r:$(top_builddir)/build/bin/MonoDevelop.Core.dll \
	-r:$(top_builddir)/build/bin/Mono.Addins.dll \
	-r:$(top_builddir)/build/bin/Mono.Addins.Setup.dll
	
$(ASSEMBLY): $(build_sources)
	$(CSC) $(CSC_FLAGS) $(build_sources) $(REFS) /out:$(ASSEMBLY)

$(ASSEMBLY).config: $(ASSEMBLY) $(srcdir)/app.config
	cp $(srcdir)/app.config $(ASSEMBLY).config

assemblydir = $(MD_ASSEMBLY_DIR)
assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).config

CLEANFILES = $(ASSEMBLY) $(ASSEMBLY).mdb
EXTRA_DIST = $(FILES) app.config

include $(top_srcdir)/Makefile.include