mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 09:06:49 -04:00
16 lines
268 B
Makefile
16 lines
268 B
Makefile
# $FreeBSD$
|
|
|
|
TESTS= test-fenv test-ilogb
|
|
CFLAGS+= -O0 -lm
|
|
ARCH!= uname -m
|
|
.if ${ARCH} == "alpha"
|
|
CFLAGS+= -mieee-with-inexact -mfp-rounding-mode=d
|
|
.endif
|
|
|
|
.PHONY: tests
|
|
tests: ${TESTS}
|
|
for p in ${TESTS}; do ${.OBJDIR}/$$p; done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f ${TESTS}
|