2008-12-04 Jb Evain <jbevain@novell.com>
authorJb Evain <jbevain@gmail.com>
Thu, 4 Dec 2008 15:08:29 +0000 (15:08 -0000)
committerJb Evain <jbevain@gmail.com>
Thu, 4 Dec 2008 15:08:29 +0000 (15:08 -0000)
* Makefile: don't build CorCompare.exe anymore as it's not even
used.

svn path=/trunk/mcs/; revision=120703

mcs/tools/corcompare/ChangeLog
mcs/tools/corcompare/Makefile

index 567d8ec491f68159695c315d9458bb1806147926..95bce57a5f4bcf172d98a39817ae9963f52d066d 100644 (file)
@@ -1,3 +1,8 @@
+2008-12-04  Jb Evain  <jbevain@novell.com>
+
+       * Makefile: don't build CorCompare.exe anymore as it's not even
+       used.
+
 2008-12-04  Jb Evain  <jbevain@novell.com>
 
        * mono-api-diff.cs: update mono-api-diff wrt to the format changes.
index 214e3fc5e36dc4865d6866502f13b769ce709c9b..e05687e10e34bd76c25dae48e9d2eddd2f378b1f 100644 (file)
@@ -2,36 +2,21 @@ thisdir = tools/corcompare
 SUBDIRS =
 include ../../build/rules.make
 
-ALL_PROGRAMS = CorCompare.exe mono-api-info.exe mono-api-diff.exe transform.exe
+ALL_PROGRAMS = mono-api-info.exe mono-api-diff.exe transform.exe
 
 CECIL = ../../class/lib/net_1_1/Mono.Cecil.dll
 
 COMMON_SOURCES = \
        AssemblyResolver.cs     \
-       CompletionInfo.cs \
-       MissingAttribute.cs \
-       MissingBase.cs \
-       MissingConstructor.cs \
-       MissingEvent.cs \
-       MissingField.cs \
-       MissingInterface.cs \
-       MissingMember.cs \
-       MissingMethod.cs \
-       MissingNameSpace.cs \
-       MissingNestedType.cs \
-       MissingProperty.cs \
-       MissingType.cs \
-       ToDoAssembly.cs \
        Util.cs \
        WellFormedXmlWriter.cs
 
 PROGRAM_INSTALL_DIR = $(mono_libdir)/mono/$(FRAMEWORK_VERSION)
 
-CORCOMPARE_SOURCES = CorCompare.cs $(COMMON_SOURCES)
 APIINFO_SOURCES = mono-api-info.cs $(COMMON_SOURCES)
 APIDIFF_SOURCES = mono-api-diff.cs $(COMMON_SOURCES)
 
-DISTFILES= $(COMMON_SOURCES) $(CORCOMPARE_SOURCES) $(APIINFO_SOURCES) $(APIDIFF_SOURCES) cormissing.xsl mono-api.xsl transform.cs
+DISTFILES= $(COMMON_SOURCES) $(APIINFO_SOURCES) $(APIDIFF_SOURCES) cormissing.xsl mono-api.xsl transform.cs
 
 all-local: $(ALL_PROGRAMS)
 
@@ -57,9 +42,6 @@ clean-local:
 
 dist-local: dist-default
 
-CorCompare.exe: $(CORCOMPARE_SOURCES)
-       $(CSCOMPILE) -r:$(CECIL) -out:$@ $^
-
 mono-api-diff.exe: $(APIDIFF_SOURCES)
        $(CSCOMPILE) -r:$(CECIL) -out:$@ $^