Loading...
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 115 116 117 118 119 120 121 122 123 | .include "${.CURDIR}/include/arpa/Makefile.inc" .include "${.CURDIR}/include/libkern/Makefile.inc" .include "${.CURDIR}/include/protocols/Makefile.inc" .include "${.CURDIR}/include/malloc/Makefile.inc" .ifdef FEATURE_LEGACY_NXZONE_APIS .include "${.CURDIR}/include/objc/Makefile.inc" .endif .include "${.CURDIR}/include/secure/Makefile.inc" .include "${.CURDIR}/include/sys/Makefile.inc" .include "${.CURDIR}/include/xlocale/Makefile.inc" INC_INSTHDRS += NSSystemDirectories.h \ _locale.h \ _structs.h \ _types.h \ _wctype.h \ _xlocale.h \ aio.h \ alloca.h \ ar.h \ asl.h \ assert.h \ asm.h \ bitstring.h \ cpio.h \ crt_externs.h \ ctype.h \ db.h \ dirent.h \ disktab.h \ err.h \ errno.h \ fcntl.h \ float.h \ fmtmsg.h \ fnmatch.h \ fsproperties.h \ fstab.h \ fts.h \ ftw.h \ getopt.h \ glob.h \ grp.h \ inttypes.h \ iso646.h \ langinfo.h \ libc.h \ libgen.h \ limits.h \ locale.h \ memory.h \ monetary.h \ monitor.h \ mpool.h \ ndbm.h \ nl_types.h \ nlist.h \ paths.h \ poll.h \ pwd.h \ ranlib.h \ readpassphrase.h \ regex.h \ runetype.h \ search.h \ semaphore.h \ setjmp.h \ sgtty.h \ signal.h \ spawn.h \ stab.h \ standards.h \ stdarg.h \ stdbool.h \ stddef.h \ stdio.h \ stdlib.h \ strhash.h \ string.h \ stringlist.h \ strings.h \ struct.h \ sysexits.h \ syslog.h \ tar.h \ termios.h \ time.h \ timeconv.h \ ttyent.h \ ucontext.h \ ulimit.h \ unistd.h \ util.h \ utime.h \ utmpx.h \ varargs.h \ vis.h \ wchar.h \ wctype.h \ wordexp.h \ xlocale.h .ifdef FEATURE_LEGACY_RUNE_APIS INC_INSTHDRS += rune.h .endif .ifdef FEATURE_LEGACY_UTMP_APIS INC_INSTHDRS += utmp.h .endif .PATH: ${.CURDIR}/include CWD := ${.CURDIR}/include MAN3 += sysexits.3 INC_INSTHDRS := ${INC_INSTHDRS:S/^/${.CURDIR}\/include\//} INSTHDRS += ${INC_INSTHDRS} LOCALHDRS += ${.CURDIR}/include/spawn_private.h .include "Makefile.nbsd_begin" NBSDHDRS = utmpx.h .include "Makefile.nbsd_end" |