Merge pull request #2274 from esdrubal/udpclientreceive
[mono.git] / mcs / tools / corcompare / Makefile
index a3ce6c8a15cae0556c01e3af6602b07533652cdc..4b9478c045ec9640b5b97ba6f4f9c8fb1f28180c 100644 (file)
@@ -4,8 +4,6 @@ include ../../build/rules.make
 
 ALL_PROGRAMS = mono-api-info.exe
 
-CECIL = ../../class/lib/net_1_1/Mono.Cecil.dll
-
 COMMON_SOURCES = \
        AssemblyResolver.cs     \
        Util.cs \
@@ -13,13 +11,16 @@ COMMON_SOURCES = \
 
 PROGRAM_INSTALL_DIR = $(mono_libdir)/mono/$(FRAMEWORK_VERSION)
 
-APIINFO_SOURCES = mono-api-info.cs $(COMMON_SOURCES)
+APIINFO_SOURCES = \
+       mono-api-info.cs \
+       ../../class/Mono.Options/Mono.Options/Options.cs \
+       $(COMMON_SOURCES)
 
 DISTFILES= $(COMMON_SOURCES) $(APIINFO_SOURCES)
 
 all-local: $(ALL_PROGRAMS)
 
-doc-update-local:
+csproj-local doc-update-local:
 
 install-local: $(ALL_PROGRAMS)
        $(MKINSTALLDIRS) $(DESTDIR)$(PROGRAM_INSTALL_DIR)
@@ -41,5 +42,5 @@ clean-local:
 
 dist-local: dist-default
 
-mono-api-info.exe: $(APIINFO_SOURCES)
-       $(CSCOMPILE) -r:$(CECIL) -out:$@ $^
+mono-api-info.exe: $(APIINFO_SOURCES) ../../class/Mono.Options/Mono.Options/Options.cs
+       $(CSCOMPILE) -r:Mono.Cecil.dll -out:$@ $^