8522d140a5
The tests haven't been run them, but this is enough to build them so I can get feedback on if the various crt.h headers are correct. MFC with: r339738 Sponsored by: DARPA, AFRL
14 lines
250 B
Makefile
14 lines
250 B
Makefile
# $FreeBSD$
|
|
|
|
ATF_TESTS_C+= init_test
|
|
ATF_TESTS_C+= fini_test
|
|
ATF_TESTS_CXX+= cxx_constructors
|
|
|
|
WARNS?= 3
|
|
|
|
.if exists(${.CURDIR:H:H}/${MACHINE_ARCH})
|
|
CFLAGS+= -I${.CURDIR:H:H}/${MACHINE_ARCH}
|
|
.else
|
|
CFLAGS+= -I${.CURDIR:H:H}/${MACHINE_CPUARCH}
|
|
.endif
|