2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / mini / Makefile.am
index ffc124cc1566ba305e7f13af9e4226ea085c9f82..f31a152aac971e13bd0fd86b8f4b91c6c543ced0 100644 (file)
@@ -1,6 +1,16 @@
 count=100000
 mtest=for_loop
 monodir=$(top_builddir)
+
+# This is needed for automake dependency generation
+if INCLUDED_LIBGC
+libgc_libs=$(monodir)/libgc/libmonogc.la
+libgc_static_libs=$(monodir)/libgc/libmonogc-static.la
+else
+libgc_libs=$(LIBGC_LIBS)
+libgc_static_libs=$(LIBGC_STATIC_LIBS)
+endif
+
 libs=  \
        $(monodir)/mono/metadata/libmonoruntime.la      \
        $(monodir)/mono/metadata/libmetadata.la \
@@ -8,7 +18,7 @@ libs=  \
        $(monodir)/mono/utils/libmonoutils.la \
        $(GMODULE_LIBS) \
        $(GLIB_LIBS)    \
-       $(LIBGC_LIBS)   \
+       $(libgc_libs)   \
        $(ICU_LIBS)
 
 static_libs=   \
@@ -18,11 +28,13 @@ static_libs=        \
        $(monodir)/mono/utils/libmonoutils.la \
        $(GMODULE_LIBS) \
        $(GLIB_LIBS)    \
-       $(LIBGC_LIBS)   \
+       $(libgc_static_libs) \
        $(ICU_LIBS)
 
-MCS=mcs
-RUNTIME=mono
+RUNTIME = MONO_PATH=$(mcs_topdir)/class/lib/default MONO_SHARED_DIR=$(mono_build_root)/runtime ./mono --config $(top_builddir)/data/config
+
+MCS = $(RUNTIME) $(mcs_topdir)/class/lib/default/mcs.exe --unsafe -nowarn:0162
+ILASM = $(RUNTIME) $(mcs_topdir)/ilasm/ilasm.exe
 
 INCLUDES = \
        -I$(top_srcdir)         \
@@ -45,7 +57,12 @@ monoldflags=
 else
 monoldflags=-Wl,-version-script=$(srcdir)/ldscript
 endif
+
+if PLATFORM_WIN32
+libmono_la_LDFLAGS=-no-undefined -version-info 1:0:0 $(monoldflags)
+else
 libmono_la_LDFLAGS=$(monoldflags)
+endif
 
 if JIT_SUPPORTED
 bin_PROGRAMS = mono
@@ -59,17 +76,13 @@ endif
 mono_SOURCES = \
        main.c
 
-if AMD64
-# Link libmono into mono statically on platforms where it is possible
+if STATIC_MONO
+# Link libmono into mono statically
 # This leads to higher performance, especially with TLS
 MONO_LIB=libmono-static.la
 else 
-if X86
-MONO_LIB=libmono-static.la
-else
 MONO_LIB=libmono.la
 endif
-endif
 
 mono_LDADD = \
        $(MONO_LIB)                     \
@@ -85,20 +98,19 @@ genmdesc_SOURCES = \
        genmdesc.c      \
        helpers.c
 
+# Don't link this against libmetadata to speed up rebuilds
 genmdesc_LDADD = \
-       $(libs) -lm     \
+       $(monodir)/mono/utils/libmonoutils.la $(monodir)/mono/metadata/opcodes.lo -lm   \
        $(GLIB_LIBS)            \
        $(GMODULE_LIBS)
 
 x86_sources = \
-    mini-exceptions.c  \
        mini-x86.c              \
        mini-x86.h              \
        exceptions-x86.c        \
        tramp-x86.c
 
 amd64_sources = \
-       mini-exceptions.c       \
        mini-amd64.c            \
        mini-amd64.h            \
        exceptions-amd64.c      \
@@ -113,7 +125,6 @@ ppc_sources = \
 sparc_sources = \
        mini-sparc.c            \
        mini-sparc.h            \
-    mini-exceptions.c  \
        exceptions-sparc.c      \
        tramp-sparc.c
 
@@ -145,11 +156,18 @@ common_sources = \
        ssa.c           \
        abcremoval.c    \
        abcremoval.h    \
+       ssapre.c        \
+       ssapre.h        \
+       ssapre-cee-ops.h \
+       ssapre-mini-ops.h \
        driver.c        \
        debug-mini.c    \
        linear-scan.c   \
        aot.c           \
-       graph.c 
+       graph.c         \
+       mini-exceptions.c       \
+       declsec.c       \
+       declsec.h
 
 test_sources =                 \
        basic-calls.cs  \
@@ -243,7 +261,7 @@ libmono_la_LIBADD = \
        $(MCS) /out:$*.exe /unsafe $< /r:TestDriver.dll
 
 %.exe: %.il
-       ilasm /output=$*.exe $<
+       $(ILASM) /output=$*.exe $<
 
 TestDriver.dll: $(srcdir)/TestDriver.cs
        $(MCS) /out:TestDriver.dll /target:library $(srcdir)/TestDriver.cs
@@ -270,42 +288,44 @@ inssel.c inssel.h: $(BURGSRC)
        $(monodir)/mono/monoburg/monoburg -c 1 -p -e $(BURGSRC) -d inssel.h -s inssel.c
 
 testi: mono test.exe
-       ./mono -v -v --ncompile 1 --compile Test:$(mtest) test.exe
+       $(RUNTIME) -v -v --ncompile 1 --compile Test:$(mtest) test.exe
 
 # ensure the tests are actually correct
 checktests: $(regtests)
        for i in $(regtests); do $(RUNTIME) $$i; done
 
 rcheck: mono $(regtests)
-       ./mono --regression $(regtests)
+       $(RUNTIME) --regression $(regtests)
 
 aotcheck: mono $(regtests)
-       for i in $(regtests); do ./mono --aot $$i; done
-       ./mono --verbose --regression $(regtests)
+       for i in $(regtests); do $(RUNTIME) --aot $$i; done
+       $(RUNTIME) --verbose --regression $(regtests)
        rm -f *.exe.so
 
 bench: mono test.exe
-       time ./mono --ncompile $(count) --compile Test:$(mtest) test.exe
+       time env $(RUNTIME) --ncompile $(count) --compile Test:$(mtest) test.exe
 
 mbench: test.exe
        time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
 
 stat1: mono bench.exe
-       ./mono --verbose --statfile stats.pl --regression bench.exe
+       $(RUNTIME) --verbose --statfile stats.pl --regression bench.exe
        perl viewstat.pl stats.pl
 
 stat2: mono basic.exe
-       ./mono --verbose --statfile stats.pl --regression basic.exe
+       $(RUNTIME) --verbose --statfile stats.pl --regression basic.exe
        perl viewstat.pl -e stats.pl
 
 stat3: mono bench.exe
-       ./mono --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
+       $(RUNTIME) --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
        perl viewstat.pl stats.pl
 
 docu: mini.sgm
        docbook2txt mini.sgm
 
-clean:
+check-local: rcheck
+
+clean-local:
        rm -f mono a.out gmon.out *.o test.exe
 
 pkgconfigdir = $(libdir)/pkgconfig
@@ -314,7 +334,7 @@ if JIT_SUPPORTED
 BUILT_SOURCES= inssel.c inssel.h $(arch_built)
 endif
 
-CLEANFILES= $(BUILT_SOURCES)
+CLEANFILES= $(BUILT_SOURCES) *.exe *.dll
 EXTRA_DIST = $(common_BURGSRC) jit-icalls.c cprop.c TestDriver.cs ldscript $(test_sources) \
        inssel-long.brg inssel-long32.brg \
        $(x86_sources) inssel-x86.brg cpu-pentium.md \
@@ -323,4 +343,3 @@ EXTRA_DIST = $(common_BURGSRC) jit-icalls.c cprop.c TestDriver.cs ldscript $(tes
        $(sparc_sources) inssel-sparc.brg cpu-sparc.md \
        $(s390_sources) inssel-s390.brg cpu-s390.md \
        $(s390x_sources) inssel-s390x.brg cpu-s390x.md
-