New tests.
[mono.git] / mono / arch / arm / Makefile.am
1
2 INCLUDES = $(GLIB_CFLAGS) -I$(top_srcdir)
3
4 noinst_LTLIBRARIES = libmonoarch-arm.la
5
6 BUILT_SOURCES = arm_dpimacros.h arm_fpamacros.h arm_vfpmacros.h
7
8
9 libmonoarch_arm_la_SOURCES = $(BUILT_SOURCES) \
10         tramp.c \
11         arm-codegen.c \
12         arm-codegen.h \
13         arm-dis.c \
14         arm-dis.h
15
16 arm_dpimacros.h: dpiops.sh mov_macros.th dpi_macros.th cmp_macros.th
17         (cd $(srcdir); bash ./dpiops.sh) > $@t
18         mv $@t $@
19
20 arm_fpamacros.h: fpaops.sh fpam_macros.th fpa_macros.th
21         (cd $(srcdir); bash ./fpaops.sh) > $@t
22         mv $@t $@
23
24 arm_vfpmacros.h: vfpops.sh vfpm_macros.th vfp_macros.th
25         (cd $(srcdir); bash ./vfpops.sh) > $@t
26         mv $@t $@
27
28 CLEANFILES = $(BUILT_SOURCES)
29
30 EXTRA_DIST = dpiops.sh mov_macros.th dpi_macros.th cmp_macros.th \
31         fpam_macros.th fpa_macros.th arm-fpa-codegen.h fpaops.sh \
32         vfpm_macros.th vfp_macros.th arm-vfp-codegen.h vfpops.sh
33