Makefile.target (edf044c558acfcf9ccd45ebacb84542dcca2e813) Makefile.target (4d04395a1716c669cf634a90e768c1baa0e68aff)
1##
1##
2## Copyright(c) 2019-2021 Qualcomm Innovation Center, Inc. All Rights Reserved.
2## Copyright(c) 2019-2022 Qualcomm Innovation Center, Inc. All Rights Reserved.
3##
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of

--- 14 unchanged lines hidden (view full) ---

25VPATH += $(HEX_SRC)
26
27first: $(HEX_SRC)/first.S
28 $(CC) -static -mv67 -nostdlib $^ -o $@
29
30HEX_TESTS = first
31HEX_TESTS += hex_sigsegv
32HEX_TESTS += misc
3##
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of

--- 14 unchanged lines hidden (view full) ---

25VPATH += $(HEX_SRC)
26
27first: $(HEX_SRC)/first.S
28 $(CC) -static -mv67 -nostdlib $^ -o $@
29
30HEX_TESTS = first
31HEX_TESTS += hex_sigsegv
32HEX_TESTS += misc
33HEX_TESTS += usr
33HEX_TESTS += preg_alias
34HEX_TESTS += dual_stores
35HEX_TESTS += multi_result
36HEX_TESTS += mem_noshuf
37HEX_TESTS += circ
38HEX_TESTS += brev
39HEX_TESTS += load_unpack
40HEX_TESTS += load_align
41HEX_TESTS += atomics
42HEX_TESTS += fpstuff
43HEX_TESTS += overflow
44
45TESTS += $(HEX_TESTS)
34HEX_TESTS += preg_alias
35HEX_TESTS += dual_stores
36HEX_TESTS += multi_result
37HEX_TESTS += mem_noshuf
38HEX_TESTS += circ
39HEX_TESTS += brev
40HEX_TESTS += load_unpack
41HEX_TESTS += load_align
42HEX_TESTS += atomics
43HEX_TESTS += fpstuff
44HEX_TESTS += overflow
45
46TESTS += $(HEX_TESTS)
47
48# This test has to be compiled for the -mv67t target
49usr: usr.c
50 $(CC) $(CFLAGS) -mv67t -O2 -Wno-inline-asm -Wno-expansion-to-defined $< -o $@ $(LDFLAGS)
51