added proxy support
[mono.git] / mono / jit / Makefile.am
1 INCLUDES =                              \
2         -I$(top_srcdir)                 \
3         $(GMODULE_CFLAGS)               \
4         $(GLIB_CFLAGS)                  
5
6 if X86
7 bin_PROGRAMS = mono
8 endif
9
10 mono_SOURCES =                  \
11         codegen.h               \
12         codegen-x86.c           \
13         emit-x86.c              \
14         jit.h                   \
15         regset.h                \
16         regset.c                \
17         debug.h                 \
18         debug-private.h         \
19         debug.c                 \
20         debug-stabs.c           \
21         debug-dwarf2.c          \
22         debug-dwarf2-plus.c     \
23         jit.c                   \
24         trampoline.c            \
25         delegate.c              \
26         exception.c             \
27         invoke.c                \
28         message.c
29
30 mono_LDADD =                            \
31         ../metadata/libmetadata.a       \
32         ../io-layer/libwapi.a           \
33         ../utils/libmonoutils.a         \
34         $(GLIB_LIBS)                    \
35         $(GMODULE_LIBS)                 \
36         -lm
37
38 codegen-x86.c codegen.h: x86.brg
39         ../monoburg/monoburg $(srcdir)/x86.brg -d codegen.h > codegen-x86.c
40
41 BUILT_SOURCES = codegen-x86.c codegen.h
42
43 CLEANFILES = $(BUILT_SOURCES)
44
45 EXTRA_DIST = x86.brg
46