Merge pull request #700 from pcercuei/update-lightrec-20221019
[pcsx_rearmed.git] / deps / lightning / include / lightning / Makefile.am
CommitLineData
4a71579b 1#
c0c16242 2# Copyright 2000, 2001, 2002, 2012-2022 Free Software Foundation, Inc.
4a71579b
PC
3#
4# This file is part of GNU lightning.
5#
6# GNU lightning is free software; you can redistribute it and/or modify it
7# under the terms of the GNU Lesser General Public License as published
8# by the Free Software Foundation; either version 3, or (at your option)
9# any later version.
10#
11# GNU lightning is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
14# License for more details.
15#
16
17lightning_includedir = $(includedir)/lightning
18
19EXTRA_DIST = \
20 jit_private.h
21
22if cpu_arm
23lightning_include_HEADERS = \
24 jit_arm.h
25endif
26if cpu_mips
27lightning_include_HEADERS = \
28 jit_mips.h
29endif
30if cpu_ppc
31lightning_include_HEADERS = \
32 jit_ppc.h
33endif
34if cpu_sparc
35lightning_include_HEADERS = \
36 jit_sparc.h
37endif
38if cpu_x86
39lightning_include_HEADERS = \
40 jit_x86.h
41endif
42if cpu_ia64
43lightning_include_HEADERS = \
44 jit_ia64.h
45endif
46if cpu_hppa
47lightning_include_HEADERS = \
48 jit_hppa.h
49endif
50if cpu_aarch64
51lightning_include_HEADERS = \
52 jit_aarch64.h
53endif
54if cpu_s390
55lightning_include_HEADERS = \
56 jit_s390.h
57endif
58if cpu_alpha
59lightning_include_HEADERS = \
60 jit_alpha.h
61endif
62if cpu_riscv
63lightning_include_HEADERS = \
64 jit_riscv.h
65endif
24d91c0d
PC
66if cpu_loongarch
67lightning_include_HEADERS = \
68 jit_loongarch.h
69endif