Merge remote branch 'upstream/master'
[mono.git] / mono / mini / Makefile.am
1 count=100000
2 mtest=for_loop
3 monodir=$(top_builddir)
4
5 # This is needed for automake dependency generation
6 if INCLUDED_LIBGC
7 libgc_libs=$(monodir)/libgc/libmonogc.la
8 libgc_static_libs=$(monodir)/libgc/libmonogc-static.la
9 else
10 libgc_libs=$(LIBGC_LIBS)
11 libgc_static_libs=$(LIBGC_STATIC_LIBS)
12 endif
13
14 libs=   \
15         $(monodir)/mono/metadata/libmonoruntime.la      \
16         $(monodir)/mono/io-layer/libwapi.la     \
17         $(monodir)/mono/utils/libmonoutils.la \
18         $(GLIB_LIBS)    \
19         $(libgc_libs)
20
21 sgen_libs = \
22         $(monodir)/mono/metadata/libmonoruntimesgen.la  \
23         $(monodir)/mono/io-layer/libwapi.la     \
24         $(monodir)/mono/utils/libmonoutils.la \
25         $(GLIB_LIBS)
26
27 if MOONLIGHT
28 moon_libs = \
29         $(monodir)/mono/metadata/libmonoruntimemoon.la  \
30         $(monodir)/mono/io-layer/libwapi.la     \
31         $(monodir)/mono/utils/libmonoutils.la \
32         $(GLIB_LIBS)
33 endif
34
35 static_libs=    \
36         $(monodir)/mono/metadata/libmonoruntime-static.la       \
37         $(monodir)/mono/io-layer/libwapi.la     \
38         $(monodir)/mono/utils/libmonoutils.la \
39         $(GLIB_LIBS)    \
40         $(libgc_static_libs)
41
42 sgenstatic_libs = \
43         $(monodir)/mono/metadata/libmonoruntimesgen-static.la   \
44         $(monodir)/mono/io-layer/libwapi.la     \
45         $(monodir)/mono/utils/libmonoutils.la \
46         $(GLIB_LIBS)
47
48 CLASS=$(mcs_topdir)/class/lib/net_2_0
49
50 RUNTIME_EXECUTABLE = $(if $(SGEN),$(top_builddir)/mono/mini/mono-sgen,$(top_builddir)/runtime/mono-wrapper)
51
52 RUNTIME = MONO_PATH=$(CLASS) $(RUNTIME_EXECUTABLE)
53 RUNTIME_AOTCHECK = MONO_PATH=$(CLASS):. $(RUNTIME_EXECUTABLE)
54
55 MCS = $(RUNTIME) $(CLASS)/gmcs.exe -unsafe -nowarn:0162
56 ILASM = $(RUNTIME) $(CLASS)/ilasm.exe
57
58 AM_CFLAGS = \
59         -I$(top_srcdir)         \
60         $(GLIB_CFLAGS)          \
61         $(LLVM_CFLAGS)          \
62         $(PLATFORM_CFLAGS) $(ARCH_CFLAGS)
63
64 AM_CXXFLAGS = $(LLVM_CXXFLAGS) $(GLIB_CFLAGS)
65
66 if HOST_WIN32
67 export HOST_CC
68 # The mingw math.h has "extern inline" functions that dont appear in libs, so
69 # optimisation is required to actually inline them
70 PLATFORM_CFLAGS = -O
71 endif
72
73 # hack for automake to have the same source file in a library and a bin
74 genmdesc_CFLAGS = $(AM_CFLAGS)
75
76 if NO_VERSION_SCRIPT
77 monoldflags=$(export_ldflags)
78 monobinldflags=$(export_ldflags)
79 else
80 monoldflags=-Wl,-version-script=$(srcdir)/ldscript $(export_ldflags)
81 monobinldflags=-Wl,-version-script=$(srcdir)/ldscript.mono $(export_ldflags)
82 endif
83
84 if HOST_WIN32
85 libmono_2_0_la_LDFLAGS=-no-undefined -avoid-version -Wl,--kill-at $(monoldflags)
86 else
87 libmono_2_0_la_LDFLAGS=$(monoldflags) -version-info 1:0:0
88 endif
89
90 if JIT_SUPPORTED
91
92 if SUPPORT_SGEN
93 sgen_binaries = mono-sgen
94 sgen_libraries = libmonosgen-2.0.la
95 sgen_static_libraries = libmonosgen-static.la
96 endif
97
98 if HOST_WIN32
99 bin_PROGRAMS = mono monow
100 else
101 bin_PROGRAMS = mono $(sgen_binaries)
102 endif
103
104 noinst_PROGRAMS = genmdesc
105
106 if SHARED_MONO
107 shared_libraries = libmono-2.0.la $(sgen_libraries)
108 endif
109
110 lib_LTLIBRARIES = $(shared_libraries)
111 noinst_LTLIBRARIES = libmono-static.la $(sgen_static_libraries)
112
113 if MOONLIGHT
114 noinst_LTLIBRARIES += libmono-moon.la
115 moon-do-build: $(BUILT_SOURCES) mono libmono-moon.la
116 moon-do-clean: maintainer-clean-generic
117         -test -z "mono$(EXEEXT)" || rm -f mono$(EXEEXT)
118         -test -z "libmono-moon.la" || rm -f libmono-moon.la
119 endif
120
121 if LOADED_LLVM
122 lib_LTLIBRARIES += libmono-llvm.la
123 libmono_llvm_la_SOURCES = mini-llvm.c mini-llvm-cpp.cpp
124 libmono_llvm_la_LIBADD = $(top_builddir)/mono/mini/libmono-$(API_VER).la $(LLVM_LIBS) $(LLVM_LDFLAGS) $(libs)
125 endif
126
127 endif
128
129 mono_SOURCES = \
130         main.c
131
132 mono_CFLAGS = $(AM_CFLAGS) $(BOEHM_DEFINES) $(LIBGC_CFLAGS)
133
134 mono_sgen_SOURCES = $(mono_SOURCES)
135 mono_sgen_CFLAGS = $(SGEN_DEFINES) $(AM_CFLAGS)
136
137 # We build this after libmono was built so it contains the date when the final
138 # link was done
139 buildver.h: libmono-static.la
140         @echo "const char *build_date = \"`date`\";" > buildver.h
141
142 mono-main.$(OBJEXT): buildver.h
143 mono_sgen-main.$(OBJEXT): buildver.h
144
145 if DTRACE_G_REQUIRED
146 LIBMONO_DTRACE_OBJECT = .libs/mono-dtrace.$(OBJEXT)
147 if STATIC_MONO
148 MONO_DTRACE_OBJECT = mono-dtrace.$(OBJEXT)
149 else
150 MONO_DTRACE_OBJECT = 
151 endif
152 else
153 MONO_DTRACE_OBJECT = 
154 LIBMONO_DTRACE_OBJECT = 
155 endif
156
157 if STATIC_MONO
158 # Link libmono into mono statically
159 # This leads to higher performance, especially with TLS
160 MONO_LIB=libmono-static.la
161 MONO_SGEN_LIB=libmonosgen-static.la
162 else 
163 MONO_LIB=libmono-2.0.la
164 MONO_SGEN_LIB=libmonosgen-2.0.la
165 endif
166
167 if LOADED_LLVM
168 LLVMMONOF=
169 else
170 LLVMMONOF=$(LLVM_LIBS) $(LLVM_LDFLAGS)
171 endif
172
173 mono_LDADD = \
174         $(MONO_LIB)             \
175         $(GLIB_LIBS)            \
176         $(LLVMMONOF)            \
177         -lm                     \
178         $(MONO_DTRACE_OBJECT)
179
180 mono_LDFLAGS = \
181         $(static_flags) -export-dynamic $(monobinldflags) $(monobin_platform_ldflags)
182
183 mono_sgen_LDADD = \
184         $(MONO_SGEN_LIB)        \
185         $(GLIB_LIBS)            \
186         $(LLVMMONOF)            \
187         -lm                     \
188         $(MONO_DTRACE_OBJECT)
189
190 mono_sgen_LDFLAGS = $(static_flags) -export-dynamic $(monobinldflags) $(monobin_platform_ldflags)
191
192 if DTRACE_G_REQUIRED
193
194 mono-dtrace.$(OBJEXT): $(top_srcdir)/data/mono.d mini.lo $(monodir)/mono/metadata/libmonoruntime-static.la
195         DTRACE="$(DTRACE)" DTRACEFLAGS="$(DTRACEFLAGS)" AR="$(AR)" $(SHELL) $(top_srcdir)/data/dtrace-prelink.sh \
196         $@ $(top_srcdir)/data/mono.d $(monodir)/mono/metadata/libmonoruntime-static.la mini.lo
197
198 .libs/mono-dtrace.$(OBJEXT): $(top_srcdir)/data/mono.d mini.lo $(monodir)/mono/metadata/libmonoruntime.la
199         DTRACE="$(DTRACE)" DTRACEFLAGS="$(DTRACEFLAGS)" AR="$(AR)" $(SHELL) $(top_srcdir)/data/dtrace-prelink.sh \
200         --pic $@ $(top_srcdir)/data/mono.d $(monodir)/mono/metadata/libmonoruntime.la mini.lo
201
202 endif
203
204 # Create monow.exe, linked for the 'windows' subsystem
205 if HOST_WIN32
206 monow_LDADD = $(mono_LDADD)
207 monow_LDFLAGS = $(mono_LDFLAGS) -mwindows
208 monow_SOURCES = $(mono_SOURCES)
209 endif
210
211 genmdesc_SOURCES = \
212         mini.h          \
213         genmdesc.c      \
214         helpers.c       \
215         ../metadata/opcodes.c
216
217 # Don't link this against libmonoruntime to speed up rebuilds
218 genmdesc_LDADD = \
219         $(monodir)/mono/utils/libmonoutils.la -lm       \
220         $(GLIB_LIBS)
221
222 x86_sources = \
223         mini-x86.c              \
224         mini-x86.h              \
225         exceptions-x86.c        \
226         tramp-x86.c
227
228 amd64_sources = \
229         mini-amd64.c            \
230         mini-amd64.h            \
231         exceptions-amd64.c      \
232         tramp-amd64.c
233
234 ppc_sources = \
235         mini-ppc.c              \
236         mini-ppc.h              \
237         exceptions-ppc.c        \
238         tramp-ppc.c
239
240 arm_sources = \
241         mini-arm.c              \
242         mini-arm.h              \
243         exceptions-arm.c        \
244         tramp-arm.c
245
246 mips_sources = \
247         mini-mips.c             \
248         mini-mips.h             \
249         exceptions-mips.c       \
250         tramp-mips.c
251
252 sparc_sources = \
253         mini-sparc.c            \
254         mini-sparc.h            \
255         exceptions-sparc.c      \
256         tramp-sparc.c
257
258 s390_sources = \
259         mini-s390.c             \
260         mini-s390.h             \
261         exceptions-s390.c       \
262         tramp-s390.c
263
264 s390x_sources = \
265         mini-s390x.c            \
266         mini-s390x.h            \
267         exceptions-s390x.c      \
268         tramp-s390x.c
269
270 ia64_sources = \
271         mini-ia64.c             \
272         mini-ia64.h             \
273         exceptions-ia64.c       \
274         tramp-ia64.c
275
276 alpha_sources = \
277         mini-alpha.c            \
278         mini-alpha.h            \
279         exceptions-alpha.c      \
280         tramp-alpha.c
281
282 hppa_sources = \
283         mini-hppa.c             \
284         mini-hppa.h             \
285         exceptions-hppa.c       \
286         tramp-hppa.c
287
288 darwin_sources = \
289         mini-darwin.c
290
291 windows_sources = \
292         mini-windows.c
293
294 posix_sources = \
295         mini-posix.c
296
297 if ENABLE_LLVM
298 if LOADED_LLVM
299 llvm_sources =
300 else
301 llvm_sources = \
302         mini-llvm.c             \
303         mini-llvm-cpp.cpp
304 endif
305 endif
306
307 common_sources = \
308         mini.c                  \
309         ir-emit.h               \
310         method-to-ir.c          \
311         decompose.c             \
312         mini.h                  \
313         version.h               \
314         optflags-def.h          \
315         jit-icalls.h            \
316         jit-icalls.c            \
317         trace.c                 \
318         trace.h                 \
319         patch-info.h            \
320         mini-ops.h              \
321         mini-arch.h             \
322         dominators.c            \
323         cfold.c                 \
324         regalloc.c              \
325         regalloc.h              \
326         helpers.c               \
327         liveness.c              \
328         ssa.c                   \
329         abcremoval.c            \
330         abcremoval.h            \
331         ssapre.c                \
332         ssapre.h                \
333         local-propagation.c     \
334         driver.c                \
335         debug-mini.c            \
336         debug-mini.h            \
337         linear-scan.c           \
338         aot-compiler.c          \
339         aot-runtime.c           \
340         graph.c                 \
341         mini-codegen.c          \
342         mini-exceptions.c       \
343         mini-trampolines.c      \
344         declsec.c               \
345         declsec.h               \
346         wapihandles.c           \
347         branch-opts.c           \
348         mini-generic-sharing.c  \
349         regalloc2.c             \
350         simd-methods.h          \
351         tasklets.c              \
352         tasklets.h              \
353         simd-intrinsics.c       \
354         mini-unwind.h           \
355         unwind.c                \
356         image-writer.h          \
357         image-writer.c          \
358         dwarfwriter.h           \
359         dwarfwriter.c           \
360         mini-gc.h               \
361         mini-gc.c               \
362         debugger-agent.h        \
363         debugger-agent.c        \
364         debug-debugger.c        \
365         debug-debugger.h        \
366         xdebug.c                        \
367         mini-llvm.h                     \
368         mini-llvm-cpp.h
369
370 test_sources =                  \
371         basic-calls.cs          \
372         basic-long.cs           \
373         bench.cs                \
374         objects.cs              \
375         arrays.cs               \
376         basic-float.cs          \
377         basic-math.cs           \
378         basic.cs                \
379         exceptions.cs           \
380         devirtualization.cs     \
381         iltests.il.in           \
382         test.cs                 \
383         generics.cs             \
384         generics-variant-types.il\
385         basic-simd.cs
386
387 regtests=basic.exe basic-float.exe basic-long.exe basic-calls.exe objects.exe arrays.exe basic-math.exe exceptions.exe iltests.exe devirtualization.exe generics.exe basic-simd.exe
388
389 if X86
390 if MONO_DEBUGGER_SUPPORTED
391 if PLATFORM_DARWIN
392 mdb_x86 = mdb-debug-info32-darwin.s
393 else
394 mdb_x86 = mdb-debug-info32.s
395 endif
396 else
397 mdb_x86 = 
398 endif
399 arch_sources = $(x86_sources) $(mdb_x86)
400 arch_built=cpu-x86.h
401 arch_define=__i386__
402 endif
403
404 if AMD64
405 if MONO_DEBUGGER_SUPPORTED
406 arch_sources = $(amd64_sources) mdb-debug-info64.s
407 else
408 arch_sources = $(amd64_sources)
409 endif
410 arch_built=cpu-amd64.h
411 arch_define=__x86_64__
412 endif
413
414 if POWERPC
415 arch_sources = $(ppc_sources)
416 arch_built=cpu-ppc.h
417 arch_define=__ppc__
418 endif
419
420 if POWERPC64
421 arch_sources = $(ppc_sources)
422 arch_built=cpu-ppc64.h
423 arch_define=__ppc64__
424 endif
425
426 if MIPS
427 arch_sources = $(mips_sources)
428 arch_built=cpu-mips.h
429 arch_define=__mips__
430 endif
431
432 if ARM
433 # pick up arm_dpimacros.h and arm_fpamacros.h
434 ARCH_CFLAGS = -I../arch/arm
435 arch_sources = $(arm_sources)
436 arch_built=cpu-arm.h
437 arch_define=__arm__
438 endif
439
440 if SPARC
441 arch_sources = $(sparc_sources)
442 arch_built=cpu-sparc.h
443 arch_define=__sparc__
444 endif
445
446 if SPARC64
447 arch_sources = $(sparc_sources)
448 arch_built=cpu-sparc.h
449 arch_define=__sparc__
450 endif
451
452 if S390
453 arch_sources = $(s390_sources)
454 arch_built=cpu-s390.h
455 arch_define=__s390__
456 endif
457
458 if S390x
459 arch_sources = $(s390x_sources)
460 arch_built=cpu-s390x.h
461 arch_define=__s390__
462 endif
463
464 if IA64
465 arch_sources = $(ia64_sources)
466 arch_built = cpu-ia64.h
467 arch_define=__ia64__
468 endif
469
470 if ALPHA
471 arch_sources = $(alpha_sources) $(mono_debugger_sources)
472 arch_built = cpu-alpha.h
473 arch_define=__alpha__
474 endif
475
476 if HPPA
477 # Only support 32-bit targets for now
478 arch_sources = $(hppa_sources)
479 arch_built = cpu-hppa.h
480 arch_define=__hppa__
481 endif
482
483 if HOST_WIN32
484 os_sources = $(windows_sources)
485 monobin_platform_ldflags=
486 endif
487
488 if PLATFORM_SIGPOSIX
489 os_sources = $(posix_sources)
490 monobin_platform_ldflags=
491 endif
492
493 if PLATFORM_DARWIN
494 os_sources = $(darwin_sources) $(posix_sources)
495 #monobin_platform_ldflags=-sectcreate __TEXT __info_plist $(top_srcdir)/mono/mini/Info.plist -framework CoreFoundation
496 monobin_platform_ldflags=-framework CoreFoundation
497 endif
498
499 libmono_2_0_la_SOURCES = $(common_sources) $(llvm_sources) $(arch_sources) $(os_sources)
500 libmono_2_0_la_CFLAGS = $(mono_CFLAGS)
501 libmono_2_0_la_LIBADD = $(libs) $(LIBMONO_DTRACE_OBJECT)
502
503 libmonosgen_2_0_la_SOURCES = $(libmono_2_0_la_SOURCES)
504 libmonosgen_2_0_la_CFLAGS = $(mono_sgen_CFLAGS)
505 libmonosgen_2_0_la_LIBADD = $(sgen_libs) $(LIBMONO_DTRACE_OBJECT)
506
507 if MOONLIGHT
508 libmono_moon_la_SOURCES = $(libmono_2_0_la_SOURCES)
509 if MOONLIGHT_BOEHM
510 libmono_moon_la_CFLAGS = $(mono_CFLAGS) $(MOONLIGHT_DEFINES)
511 libmono_moon_la_LIBADD = $(moon_libs) $(libgc_libs) $(LIBMONO_DTRACE_OBJECT)
512 else
513 libmono_moon_la_CFLAGS = $(mono_sgen_CFLAGS) $(MOONLIGHT_DEFINES)
514 libmono_moon_la_LIBADD = $(moon_libs) $(LIBMONO_DTRACE_OBJECT)
515 endif
516 endif
517
518 libmono_static_la_SOURCES = $(libmono_2_0_la_SOURCES)
519 libmono_static_la_CFLAGS = $(mono_CFLAGS)
520 libmono_static_la_LDFLAGS = -static
521 libmono_static_la_LIBADD = $(static_libs) $(MONO_DTRACE_OBJECT)
522
523 libmonosgen_static_la_SOURCES = $(libmono_2_0_la_SOURCES)
524 libmonosgen_static_la_CFLAGS = $(mono_sgen_CFLAGS)
525 libmonosgen_static_la_LDFLAGS = -static
526 libmonosgen_static_la_LIBADD = $(sgenstatic_libs) $(MONO_DTRACE_OBJECT)
527
528 nodist_libmono_static_la_SOURCES = $(nodist_libmono_la_SOURCES)
529 nodist_libmono_static_la_CFLAGS = $(mono_CFLAGS)
530
531 BURGSRC= $(common_BURGSRC) $(arch_BURGSRC)
532
533 libmonoincludedir = $(includedir)/mono-$(API_VER)/mono/jit
534
535 libmonoinclude_HEADERS = jit.h
536
537 basic-simd.exe: basic-simd.cs
538         $(MCS) -out:$@ $< -r:TestDriver.dll -r:Mono.Simd.dll
539
540 nacl.exe: nacl.cs
541         $(MCS) -out:$@ $< -r:TestDriver.dll -r:Mono.Simd.dll
542
543 generics.exe: generics.cs TestDriver.dll generics-variant-types.dll
544         $(MCS) -out:$@ $< -r:TestDriver.dll -r:generics-variant-types.dll
545
546 %.exe: %.cs TestDriver.dll
547         $(MCS) -out:$@ -unsafe $< -r:TestDriver.dll
548
549 iltests.il: iltests.il.in Makefile.am
550         echo '// DO NOT EDIT: This file has been generated from iltests.il.in' > iltests.il
551         cpp -Darch=$(arch_define) < $(srcdir)/iltests.il.in | sed 's/^#.*//' >> iltests.il
552
553 %.exe: %.il
554         $(ILASM) -output=$@ $<
555
556 TestDriver.dll: $(srcdir)/TestDriver.cs
557         $(MCS) -out:$@ -target:library $<
558
559 generics-variant-types.dll: generics-variant-types.il
560         $(ILASM) -dll -output=$@ $<
561
562 if NACL_CODEGEN
563 GENMDESC_OPTS=--nacl
564 else !NACL_CODEGEN
565 GENMDESC_OPTS=
566 endif !NACL_CODEGEN
567
568 # we don't always use the perl impl because it's an additional
569 # build dependency for the poor windows users
570 # $(arch_define) is the preprocessor symbol that enables all the opcodes
571 # for the specific platform in mini-ops.h
572 if CROSS_COMPILING
573 GENMDESC_PRG=perl $(srcdir)/genmdesc.pl $(arch_define) $(srcdir) $(GENMDESC_OPTS)
574 else !CROSS_COMPILING
575 GENMDESC_PRG=./genmdesc $(GENMDESC_OPTS)
576 endif !CROSS_COMPILING
577
578 cpu-x86.h: cpu-x86.md genmdesc$(EXEEXT)
579         $(GENMDESC_PRG) cpu-x86.h x86_desc $(srcdir)/cpu-x86.md
580
581 cpu-amd64.h: cpu-amd64.md genmdesc$(EXEEXT)
582         $(GENMDESC_PRG) cpu-amd64.h amd64_desc $(srcdir)/cpu-amd64.md
583
584 cpu-ppc.h: cpu-ppc.md genmdesc$(EXEEXT)
585         $(GENMDESC_PRG) cpu-ppc.h ppcg4 $(srcdir)/cpu-ppc.md
586
587 cpu-ppc64.h: cpu-ppc64.md genmdesc$(EXEEXT)
588         $(GENMDESC_PRG) cpu-ppc64.h ppc64_cpu_desc $(srcdir)/cpu-ppc64.md
589
590 cpu-arm.h: cpu-arm.md genmdesc$(EXEEXT)
591         $(GENMDESC_PRG) cpu-arm.h arm_cpu_desc $(srcdir)/cpu-arm.md
592
593 cpu-sparc.h: cpu-sparc.md genmdesc$(EXEEXT)
594         $(GENMDESC_PRG) cpu-sparc.h sparc_desc $(srcdir)/cpu-sparc.md
595
596 cpu-s390.h: cpu-s390.md genmdesc$(EXEEXT)
597         $(GENMDESC_PRG) cpu-s390.h s390_cpu_desc $(srcdir)/cpu-s390.md
598
599 cpu-s390x.h: cpu-s390x.md genmdesc$(EXEEXT)
600         $(GENMDESC_PRG) cpu-s390x.h s390x_cpu_desc $(srcdir)/cpu-s390x.md
601
602 cpu-ia64.h: cpu-ia64.md genmdesc$(EXEEXT)
603         $(GENMDESC_PRG) cpu-ia64.h ia64_desc $(srcdir)/cpu-ia64.md
604
605 cpu-alpha.h: cpu-alpha.md genmdesc$(EXEEXT)
606         $(GENMDESC_PRG) cpu-alpha.h alpha_desc $(srcdir)/cpu-alpha.md
607
608 cpu-hppa.h: cpu-hppa.md genmdesc$(EXEEXT)
609         $(GENMDESC_PRG) cpu-hppa.h hppa_desc $(srcdir)/cpu-hppa.md
610
611 cpu-mips.h: cpu-mips.md genmdesc$(EXEEXT)
612         $(GENMDESC_PRG) cpu-mips.h mips_desc $(srcdir)/cpu-mips.md
613
614 testi: mono test.exe
615         $(RUNTIME) -v -v --ncompile 1 --compile Test:$(mtest) test.exe
616
617 # ensure the tests are actually correct
618 checktests: $(regtests)
619         for i in $(regtests); do $(RUNTIME) $$i; done
620
621 rcheck: mono $(regtests)
622         $(RUNTIME) --regression $(regtests)
623
624 LLVM_AOT_RUNTIME_OPTS=$(if $(LLVM),--llvm,)
625
626 aotcheck: mono $(regtests)
627         rm -f *.exe.so
628         $(RUNTIME) $(LLVM_AOT_RUNTIME_OPTS) --aot $(regtests) || exit 1
629         for i in $(regtests); do $(RUNTIME_AOTCHECK) --regression $$i || exit 1; done
630         rm -f *.exe.so
631
632 llvmaotcheck:
633         $(MAKE) aotcheck LLVM=1
634
635 # This currently only works on amd64/arm
636 fullaotcheck: mono $(regtests)
637         rm -rf fullaot-tmp
638         mkdir fullaot-tmp
639         cp $(CLASS)/mscorlib.dll $(CLASS)/System.Core.dll $(CLASS)/System.dll $(CLASS)/Mono.Posix.dll $(CLASS)/System.Configuration.dll $(CLASS)/System.Security.dll $(CLASS)/System.Xml.dll $(CLASS)/Mono.Security.dll $(CLASS)/Mono.Simd.dll $(regtests) generics-variant-types.dll TestDriver.dll fullaot-tmp/
640         cp $(regtests) fullaot-tmp/
641         MONO_PATH=fullaot-tmp $(top_builddir)/runtime/mono-wrapper $(LLVM_AOT_RUNTIME_OPTS) --aot=full fullaot-tmp/* || exit 1
642         for i in $(regtests); do echo $$i; MONO_PATH=fullaot-tmp $(top_builddir)/runtime/mono-wrapper --full-aot fullaot-tmp/$$i --exclude '!FULLAOT' || exit 1; done
643
644 llvmfullaotcheck:
645         $(MAKE) fullaotcheck LLVM=1
646
647 bench: mono test.exe
648         time env $(RUNTIME) --ncompile $(count) --compile Test:$(mtest) test.exe
649
650 mbench: test.exe
651         time $(monodir)/mono/jit/mono --ncompile $(count) --compile Test:$(mtest) test.exe
652
653 stat1: mono bench.exe
654         $(RUNTIME) --verbose --statfile stats.pl --regression bench.exe
655         perl viewstat.pl stats.pl
656
657 stat2: mono basic.exe
658         $(RUNTIME) --verbose --statfile stats.pl --regression basic.exe
659         perl viewstat.pl -e stats.pl
660
661 stat3: mono bench.exe
662         $(RUNTIME) --statfile stats.pl --ncompile 1000 --compile Tests:test_0_many_nested_loops bench.exe 
663         perl viewstat.pl stats.pl
664
665 docu: mini.sgm
666         docbook2txt mini.sgm
667
668 check-local: rcheck
669
670 clean-local:
671         rm -f mono a.out gmon.out *.o buildver.h test.exe
672
673 pkgconfigdir = $(libdir)/pkgconfig
674
675 if JIT_SUPPORTED
676 BUILT_SOURCES = version.h $(arch_built)
677 else
678 BUILT_SOURCES = version.h
679 endif
680
681 CLEANFILES= $(BUILT_SOURCES) *.exe *.dll
682 EXTRA_DIST = $(common_BURGSRC) TestDriver.cs ldscript ldscript.mono \
683         genmdesc.pl                             \
684         $(test_sources)                         \
685         $(x86_sources) cpu-x86.md               \
686         $(amd64_sources) cpu-amd64.md           \
687         $(ppc_sources) cpu-ppc.md cpu-ppc64.md  \
688         $(arm_sources) cpu-arm.md               \
689         $(mips_sources) cpu-mips.md             \
690         $(sparc_sources) cpu-sparc.md           \
691         $(s390_sources) cpu-s390.md             \
692         $(s390x_sources) cpu-s390x.md           \
693         $(ia64_sources) cpu-ia64.md             \
694         $(alpha_sources) cpu-alpha.md           \
695         $(hppa_sources) cpu-hppa.md             \
696         $(windows_sources)                      \
697         $(darwin_sources) Info.plist            \
698         $(posix_sources)
699
700 version.h: Makefile
701         if test -d $(top_srcdir)/.git; then \
702                 (cd $(top_srcdir); \
703                         LANG=C; export LANG; \
704                         branch=`git branch | grep '^\*' | cut -d ' ' -f 2`; \
705                         version=`git log --no-color --first-parent -n1 --pretty=format:%h`; \
706                         echo "#define FULL_VERSION \"$$branch/$$version\""; \
707                 ); \
708         else \
709                 echo "#define FULL_VERSION \"tarball\""; \
710         fi > version.h
711
712 # Utility target for patching libtool to speed up linking
713 patch-libtool:
714         sed -e 's,if (for obj in $$oldobjs,if (for obj in "",g' < ../../libtool > 2; mv 2 ../../libtool
715         chmod a+x ../../libtool
716
717 tags:
718         etags -o TAGS `find .. -name "*.h" -o -name "*.c"`