Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / Makefile.am
index 52ccc717e8da637328c4e5a6aea3251eed87872c..32e231637aa2df36ceda2699042fec2c5ce24112 100644 (file)
-noinst_PROGRAMS = pedump
+if PLATFORM_WIN32
+export HOST_CC
+# Use -m here. This will use / as directory separator (C:/WINNT).
+# The files that use MONO_ASSEMBLIES and/or MONO_CFG_DIR replace the
+# / by \ if running under WIN32.
+assembliesdir = `cygpath -m "${libdir}"`
+confdir = `cygpath -m "${sysconfdir}"`
+# The mingw math.h has "extern inline" functions that dont appear in libs, so
+# optimisation is required to actually inline them
+AM_CFLAGS = -O
+else
+assembliesdir = $(libdir)
+confdir = $(sysconfdir)
+endif
 
-lib_LIBRARIES = libmetadata.a
+bin_PROGRAMS = monosn pedump
 
-#
-# Keep in sync with mono/runtime/Makefile.am
-#
-assembliesdir = $(libdir)
+noinst_LTLIBRARIES = libmetadata.la libmonoruntime.la
 
-INCLUDES = $(GLIB_CFLAGS) $(GMODULE_CFLAGS) -I$(top_srcdir)    \
-       -DMONO_ASSEMBLIES=\""$(assembliesdir)"\"                
 
+INCLUDES = $(GLIB_CFLAGS) $(GMODULE_CFLAGS) -I$(top_srcdir)    -I$(top_srcdir)/mono \
+       -DMONO_ASSEMBLIES=\"$(assembliesdir)\" -DMONO_CFG_DIR=\"$(confdir)\"
 
-if THREADS_PTHREAD
-THREAD_SOURCE = \
-       threads-pthread.c       \
-       threads-pthread.h       \
-       #
-else
-THREAD_SOURCE = \
-       threads-dummy.h         \
-       threads-dummy.c         \
-       #
-endif
+libmonoruntime_la_SOURCES = \
+       reflection.c    \
+       object.c        \
+       icall.c         \
+       decimal.c       \
+       decimal.h       \
+       gc.c            \
+       gc-internal.h   \
+       marshal.c       \
+       marshal.h       \
+       monitor.c       \
+       monitor.h       \
+       threads.c       \
+       threadpool.c    \
+       file-io.c       \
+       file-io.h       \
+       socket-io.c     \
+       socket-io.h     \
+       exception.c     \
+       exception.h     \
+       unicode.c       \
+       unicode.h       \
+       appdomain.c     \
+       debug-mono-symfile.h    \
+       debug-mono-symfile.c    \
+       mono-debug.h            \
+       mono-debug.c            \
+       mono-debug-debugger.h   \
+       mono-debug-debugger.c   \
+       profiler.c      \
+       profiler-private.h      \
+       rand.h          \
+       rand.c          \
+       string-icalls.c \
+       string-icalls.h \
+       sysmath.h       \
+       sysmath.c       \
+       process.c       \
+       process.h       \
+       environment.c   \
+       environment.h
 
-libmetadata_a_SOURCES = \
+libmetadata_la_SOURCES = \
        assembly.c      \
+       domain.c        \
+       opcodes.c       \
        image.c         \
        metadata.c      \
+       verify.c        \
+       mono-endian.c   \
+       mono-config.c   \
+       mono-config.h   \
        private.h       \
        rawbuffer.c     \
-       reflection.c    \
        loader.c        \
        class.c         \
-       object.c        \
-       icall.c         \
-       threads.h       \
-       $(THREAD_SOURCE)        \
-       #
+       mempool.c       \
+       debug-helpers.c
 
 libmetadataincludedir = $(includedir)/mono/metadata
+libmonoruntimeincludedir = $(includedir)/mono/metadata
+
+libmonoruntimeinclude_HEADERS = \
+       appdomain.h     \
+       mono-debug.h    \
+       mono-debug-debugger.h   \
+       debug-mono-symfile.h    \
+       threadpool.h    \
+       threads-types.h \
+       threads.h       \
+       environment.h   \
+       monitor.h
 
 libmetadatainclude_HEADERS = \
        assembly.h      \
+       opcodes.h       \
        blob.h          \
        cil-coff.h      \
-       endian.h        \
+       mono-endian.h   \
        image.h         \
        metadata.h      \
+       verify.h        \
        rawbuffer.h     \
        reflection.h    \
        row-indexes.h   \
@@ -54,11 +110,25 @@ libmetadatainclude_HEADERS = \
        tokentype.h     \
        loader.h        \
        class.h         \
-       object.h        
+       object.h        \
+       exception.h     \
+       profiler.h      \
+       appdomain.h     \
+       debug-helpers.h \
+       mempool.h       \
+       rand.h
 
 pedump_SOURCES =               \
-       pedump.c $(libmetadata_a_SOURCES)
+       pedump.c
+
+pedump_LDADD = libmetadata.la ../io-layer/libwapi.la ../utils/libmonoutils.la $(GLIB_LIBS) $(GMODULE_LIBS) -lm
 
-pedump_LDADD = $(GLIB_LIBS) $(GMODULE_LIBS) $(THREAD_LIBS)
 
+monosn_LDADD = \
+       ../metadata/libmetadata.la      \
+       ../io-layer/libwapi.la          \
+       ../utils/libmonoutils.la        \
+       $(GLIB_LIBS)                    \
+       $(GMODULE_LIBS)                 \
+       -lm