1 #
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
6 #
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
10 #
11
12 #
13 # Copyright 2011 Nexenta Systems, Inc. All rights reserved.
14 #
15
16 LIBMDIR = $(SRC)/lib/libm
17
18 mvecOBJS = \
19 __vTBL_atan1.o \
20 __vTBL_atan2.o \
21 __vTBL_rsqrt.o \
22 __vTBL_sincos.o \
23 __vTBL_sincos2.o \
24 __vTBL_sqrtf.o \
25 __vatan.o \
26 __vatan2.o \
27 __vatan2f.o \
28 __vatanf.o \
29 __vc_abs.o \
30 __vc_exp.o \
31 __vc_log.o \
32 __vc_pow.o \
33 __vcos.o \
34 __vcosbig.o \
257 ../common/vrsqrtf_.c \
258 ../common/vsin_.c \
259 ../common/vsincos_.c \
260 ../common/vsincosf_.c \
261 ../common/vsinf_.c \
262 ../common/vsqrt_.c \
263 ../common/vsqrtf_.c \
264 ../common/vz_abs_.c \
265 ../common/vz_exp_.c \
266 ../common/vz_log_.c \
267 ../common/vz_pow_.c
268
269 .KEEP_STATE:
270
271 all: $(LIBS)
272
273 lint: lintcheck
274
275 pics/%.o: ../$(TARGET_ARCH)/src/%.S
276 $(COMPILE.s) -o $@ $<
277 $(POST_PROCESS_O)
278
279 pics/%.o: ../common/$$(CHIP)/%.S
280 $(COMPILE.s) -o $@ $<
281 $(POST_PROCESS_O)
|
1 #
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
6 #
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
10 #
11
12 #
13 # Copyright 2011 Nexenta Systems, Inc. All rights reserved.
14 #
15 # Copyright (c) 2019, Joyent, Inc.
16 #
17
18 LIBMDIR = $(SRC)/lib/libm
19
20 mvecOBJS = \
21 __vTBL_atan1.o \
22 __vTBL_atan2.o \
23 __vTBL_rsqrt.o \
24 __vTBL_sincos.o \
25 __vTBL_sincos2.o \
26 __vTBL_sqrtf.o \
27 __vatan.o \
28 __vatan2.o \
29 __vatan2f.o \
30 __vatanf.o \
31 __vc_abs.o \
32 __vc_exp.o \
33 __vc_log.o \
34 __vc_pow.o \
35 __vcos.o \
36 __vcosbig.o \
259 ../common/vrsqrtf_.c \
260 ../common/vsin_.c \
261 ../common/vsincos_.c \
262 ../common/vsincosf_.c \
263 ../common/vsinf_.c \
264 ../common/vsqrt_.c \
265 ../common/vsqrtf_.c \
266 ../common/vz_abs_.c \
267 ../common/vz_exp_.c \
268 ../common/vz_log_.c \
269 ../common/vz_pow_.c
270
271 .KEEP_STATE:
272
273 all: $(LIBS)
274
275 lint: lintcheck
276
277 pics/%.o: ../$(TARGET_ARCH)/src/%.S
278 $(COMPILE.s) -o $@ $<
279 $(POST_PROCESS_S_O)
280
281 pics/%.o: ../common/$$(CHIP)/%.S
282 $(COMPILE.s) -o $@ $<
283 $(POST_PROCESS_S_O)
|