[metadata] Remove native threadpool from netcore build (#17856)
[mono-project.git] / mono / arch / riscv / Makefile.am
blob16505ff8e5a18f488746b641b66df362b1401f26
1 AM_CPPFLAGS = $(GLIB_CFLAGS)
3 EXTRA_DIST = riscv-codegen.h
5 bin_PROGRAMS = riscv-codegen-test
7 riscv_codegen_test_SOURCES = riscv-codegen-test.c
9 if RISCV64
10 bits = 64
11 else
12 bits = 32
13 endif
15 check-local: riscv-codegen-test
16         ./riscv-codegen-test > riscv-codegen.s
17         $(AS) riscv-codegen.s -o riscv-codegen.elf
18         $(OBJDUMP) -D -M numeric,no-aliases riscv-codegen.elf > riscv-codegen.res
19         diff -u riscv-codegen.exp$(bits) riscv-codegen.res