forked from RebelTechnology/OwlProgram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibs.mk
115 lines (100 loc) · 5.58 KB
/
libs.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
S_SRC += $(DSPLIB)/TransformFunctions/arm_bitreversal2.S
C_SRC += $(DSPLIB)/FastMathFunctions/arm_sin_f32.c
C_SRC += $(DSPLIB)/FastMathFunctions/arm_cos_f32.c
C_SRC += $(DSPLIB)/CommonTables/arm_common_tables.c
C_SRC += $(DSPLIB)/CommonTables/arm_const_structs.c
C_SRC += $(DSPLIB)/ComplexMathFunctions/arm_cmplx_conj_f32.c
C_SRC += $(DSPLIB)/ComplexMathFunctions/arm_cmplx_dot_prod_f32.c
C_SRC += $(DSPLIB)/ComplexMathFunctions/arm_cmplx_mag_f32.c
C_SRC += $(DSPLIB)/ComplexMathFunctions/arm_cmplx_mag_squared_f32.c
C_SRC += $(DSPLIB)/ComplexMathFunctions/arm_cmplx_mult_cmplx_f32.c
C_SRC += $(DSPLIB)/ComplexMathFunctions/arm_cmplx_mult_real_f32.c
C_SRC += $(DSPLIB)/TransformFunctions/arm_cfft_f32.c
C_SRC += $(DSPLIB)/TransformFunctions/arm_cfft_radix8_f32.c
C_SRC += $(DSPLIB)/TransformFunctions/arm_rfft_fast_f32.c
C_SRC += $(DSPLIB)/TransformFunctions/arm_rfft_init_q15.c
C_SRC += $(DSPLIB)/TransformFunctions/arm_rfft_q15.c
C_SRC += $(DSPLIB)/TransformFunctions/arm_cfft_q15.c
C_SRC += $(DSPLIB)/TransformFunctions/arm_cfft_radix4_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_biquad_cascade_df1_init_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_biquad_cascade_df1_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_biquad_cascade_df2T_init_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_biquad_cascade_df2T_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_correlate_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_conv_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_conv_partial_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_lms_init_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_lms_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_lms_norm_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_lms_norm_init_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_fir_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_fir_init_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_fir_decimate_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_fir_decimate_init_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_fir_interpolate_f32.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_fir_interpolate_init_f32.c
C_SRC += $(DSPLIB)/SupportFunctions/arm_float_to_q31.c
C_SRC += $(DSPLIB)/SupportFunctions/arm_q31_to_float.c
C_SRC += $(DSPLIB)/SupportFunctions/arm_float_to_q15.c
C_SRC += $(DSPLIB)/SupportFunctions/arm_q15_to_float.c
C_SRC += $(DSPLIB)/SupportFunctions/arm_copy_f32.c
C_SRC += $(DSPLIB)/SupportFunctions/arm_fill_f32.c
C_SRC += $(DSPLIB)/SupportFunctions/arm_q15_to_q31.c
C_SRC += $(DSPLIB)/SupportFunctions/arm_q31_to_q15.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_abs_f32.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_add_f32.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_dot_prod_f32.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_mult_f32.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_negate_f32.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_scale_f32.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_sub_f32.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_max_f32.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_mean_f32.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_min_f32.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_power_f32.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_rms_f32.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_std_f32.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_var_f32.c
C_SRC += $(DSPLIB)/FastMathFunctions/arm_sin_q15.c
C_SRC += $(DSPLIB)/FastMathFunctions/arm_cos_q15.c
C_SRC += $(DSPLIB)/FastMathFunctions/arm_sqrt_q15.c
C_SRC += $(DSPLIB)/ComplexMathFunctions/arm_cmplx_conj_q15.c
C_SRC += $(DSPLIB)/ComplexMathFunctions/arm_cmplx_dot_prod_q15.c
C_SRC += $(DSPLIB)/ComplexMathFunctions/arm_cmplx_mag_q15.c
C_SRC += $(DSPLIB)/ComplexMathFunctions/arm_cmplx_mag_squared_q15.c
C_SRC += $(DSPLIB)/ComplexMathFunctions/arm_cmplx_mult_cmplx_q15.c
C_SRC += $(DSPLIB)/ComplexMathFunctions/arm_cmplx_mult_real_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_correlate_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_conv_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_conv_partial_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_lms_init_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_lms_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_lms_norm_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_lms_norm_init_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_fir_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_fir_init_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_fir_decimate_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_fir_decimate_init_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_fir_interpolate_q15.c
C_SRC += $(DSPLIB)/FilteringFunctions/arm_fir_interpolate_init_q15.c
C_SRC += $(DSPLIB)/SupportFunctions/arm_copy_q15.c
C_SRC += $(DSPLIB)/SupportFunctions/arm_fill_q15.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_abs_q15.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_add_q15.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_dot_prod_q15.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_mult_q15.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_negate_q15.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_scale_q15.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_sub_q15.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_shift_q15.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_max_q15.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_mean_q15.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_min_q15.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_power_q15.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_rms_q15.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_std_q15.c
C_SRC += $(DSPLIB)/StatisticsFunctions/arm_var_q15.c
C_SRC += $(DSPLIB)/BasicMathFunctions/arm_add_q31.c
C_SRC += $(DSPLIB)/MatrixFunctions/arm_mat_init_f32.c
C_SRC += $(DSPLIB)/MatrixFunctions/arm_mat_add_f32.c
C_SRC += $(DSPLIB)/MatrixFunctions/arm_mat_mult_f32.c