blob: e7a96f1eceb13fe93743f5f055b8f91d9488acb5 (
plain)
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
|
# $OpenBSD: Makefile,v 1.41 2014/06/13 01:55:02 matthew Exp $
SUBDIR+= _setjmp alloca atexit basename cephes cxa-atexit db dirname env
SUBDIR+= explicit_bzero fmemopen fnmatch fpclassify getcap getopt_long glob
SUBDIR+= hsearch longjmp locale malloc mkstemp modf netdb open_memstream
SUBDIR+= orientation popen printf
SUBDIR+= regex setjmp setjmp-signal sigreturn sigsetjmp sprintf
SUBDIR+= stdio_threading stpncpy strerror strtod strtol strtonum
SUBDIR+= telldir time timingsafe vis
.if defined(REGRESS_FULL)
SUBDIR+= getaddrinfo
SUBDIR+= setjmp-fpu
.endif
.if (${MACHINE_ARCH} != "vax")
SUBDIR+= ieeefp
.endif
.if exists(arch/${MACHINE_ARCH})
SUBDIR+= arch/${MACHINE_ARCH}
.endif
install:
.include <bsd.subdir.mk>
|