Added missing semicolons
[mono.git] / runtime / Makefile.am
index b1938f4f62a1c2c19891100d8f23fc9a675ba154..6965d95cd90ac44cb415bd786a99fed7e88bfa55 100644 (file)
@@ -2,10 +2,13 @@
 # being compiled on windows.
 #
 
+mcs_topdir=$(top_srcdir)/../mcs
+
 assemblies_DATA =      \
        Accessibility.dll                                       \
        ByteFX.Data.dll                                         \
-       corlib.dll                                              \
+       Commons.Xml.Relaxng.dll                                 \
+       mscorlib.dll                                            \
        Cscompmgd.dll                                           \
        I18N.CJK.dll                                            \
        I18N.dll                                                \
@@ -16,18 +19,19 @@ assemblies_DATA =   \
        ICSharpCode.SharpZipLib.dll                             \
        Microsoft.VisualBasic.dll                               \
        Microsoft.VisualC.dll                                   \
+       Microsoft.Vsa.dll                                       \
+       Mono.Cairo.dll                  \
        Mono.CSharp.Debugger.dll                                \
-       Mono.Data.DB2Client.dll                                 \
-       Mono.Data.MySql.dll                                     \
-       Mono.Data.PostgreSqlClient.dll                          \
        Mono.Data.SqliteClient.dll                              \
        Mono.Data.SybaseClient.dll                              \
        Mono.Data.TdsClient.dll                                 \
        Mono.Data.Tds.dll                                       \
+       Novell.Directory.Ldap.dll                                       \
        Mono.GetOptions.dll                                     \
        Mono.Http.dll                                           \
-       Mono.PEToolkit.dll                                      \
        Mono.Posix.dll                                          \
+       Mono.Security.dll                                       \
+       Mono.Security.Win32.dll                                 \
        Npgsql.dll                                              \
        NUnit.Util.dll                                          \
        NUnit.Framework.dll                                     \
@@ -37,17 +41,22 @@ assemblies_DATA =   \
        System.Data.OracleClient.dll                            \
        System.dll                                              \
        System.Design.dll                                       \
+       System.DirectoryServices.dll                            \
+       System.Drawing.Design.dll                               \
        System.Drawing.dll                                      \
        System.EnterpriseServices.dll                           \
+       System.Management.dll                                   \
+       System.Messaging.dll                                    \
        System.Runtime.Remoting.dll                             \
        System.Runtime.Serialization.Formatters.Soap.dll        \
        System.Security.dll                                     \
+       System.ServiceProcess.dll                               \
        System.Web.dll                                          \
        System.Web.Services.dll                                 \
        System.Windows.Forms.dll                                \
        System.Xml.dll
 
-monobins_DATA = mcs.exe mbas.exe monoresgen.exe secutil.exe ilasm.exe cilc.exe
+monobins_DATA = mcs.exe mbas.exe monoresgen.exe secutil.exe ilasm.exe cilc.exe xsd.exe wsdl.exe genxs.exe al.exe disco.exe sqlsharp.exe signcode.exe chktrust.exe soapsuds.exe monop.exe setreg.exe cert2spc.exe certmgr.exe MakeCert.exe
 
 EXTRA_DIST = $(monobins_DATA) $(assemblies_DATA)
 
@@ -58,15 +67,39 @@ assembliesdir = $(libdir)
 monobinsdir = $(bindir)
 
 $(assemblies_DATA):
-       -cp $(top_srcdir)/../mcs/class/lib/$@ . || cp $(assembliesdir)/$@ . 
+       @f=$(mcs_topdir)/class/lib/$@; \
+       if test -f $$f; then :; else f=$(assembliesdir)/$@; fi ; \
+       echo "cp -f $$f $(srcdir)"; \
+       cp -f $$f $(srcdir)
 
 $(monobins_DATA):
-       -cp $(top_srcdir)/../mcs/mcs/mcs.exe . || cp $(monobinsdir)/mcs.exe . 
-       -cp $(top_srcdir)/../mcs/mbas/mbas.exe . || cp $(monobinsdir)/mbas.exe .
-       -cp $(top_srcdir)/../mcs/tools/security/secutil.exe . || cp $(monobinsdir)/secutil.exe . 
-       -cp $(top_srcdir)/../mcs/monoresgen/monoresgen.exe . || cp $(monobinsdir)/monoresgen.exe . 
-       -cp $(top_srcdir)/../mcs/ilasm/ilasm.exe . || cp $(monobinsdir)/ilasm.exe .
-       -cp $(top_srcdir)/../mcs/tools/cilc/cilc.exe . || cp $(monobinsdir)/cilc.exe .
+       @case "$@" in \
+       mcs.exe)                 d=mcs                          ;; \
+       mbas.exe)                d=mbas                         ;; \
+       secutil.exe)             d=tools/security               ;; \
+       monoresgen.exe)          d=monoresgen                   ;; \
+       ilasm.exe)               d=ilasm                        ;; \
+       cilc.exe)                d=tools/cilc                   ;; \
+       xsd.exe)                 d=tools/mono-xsd               ;; \
+       wsdl.exe)                d=tools/wsdl                   ;; \
+       genxs.exe)               d=tools/genxs                  ;; \
+       al.exe)                  d=tools/al                     ;; \
+       disco.exe)               d=tools/disco                  ;; \
+       soapsuds.exe)            d=tools/soapsuds               ;; \
+       sqlsharp.exe)            d=tools/SqlSharp               ;; \
+       chktrust.exe)            d=tools/security               ;; \
+       signcode.exe)            d=tools/security               ;; \
+       MakeCert.exe)            d=tools/security               ;; \
+       cert2spc.exe)            d=tools/security               ;; \
+       certmgr.exe)             d=tools/security               ;; \
+       setreg.exe)              d=tools/security               ;; \
+       monop.exe)               d=tools/monop                  ;; \
+       browsercaps-updater.exe) d=tools/browsercaps-updater    ;; \
+       esac; \
+       f=$(mcs_topdir)/$$d/$@; \
+       if test -f $$f; then :; else f=$(monobinsdir)/$@; fi ; \
+       echo "cp -f $$f $(srcdir)"; \
+       cp -f $$f $(srcdir)
 
 dist-hook:
        for i in $(monobins_DATA) $(assemblies_DATA); do        \