1 # $NetBSD: Makefile,v 1.47 2006/10/29 06:56:01 dogcow Exp $ 2 3 HOSTLIB= nbcompat 4 5 SRCS= atoll.c basename.c dirname.c fgetln.c flock.c fparseln.c \ 6 getmode.c getopt_long.c gettemp.c heapsort.c \ 7 issetugid.c lchflags.c lchmod.c lchown.c libyywrap.c \ 8 md2.c md2hl.c md4c.c md4hl.c md5c.c md5hl.c mkdtemp.c \ 9 mkstemp.c pread.c putc_unlocked.c pwcache.c pwrite.c \ 10 pw_scan.c rmd160.c rmd160hl.c setenv.c setgroupent.c \ 11 setpassent.c setprogname.c sha1.c sha1hl.c sha2.c \ 12 sha256hl.c sha384hl.c sha512hl.c snprintf.c \ 13 strlcat.c strlcpy.c strmode.c strsep.c strsuftoll.c \ 14 strtoll.c unvis.c vis.c err.c errx.c verr.c verrx.c \ 15 vwarn.c vwarnx.c warn.c warnx.c fts.c glob.c efun.c 16 17 BUILD_OSTYPE!= uname -s 18 19 # Disable use of pre-compiled headers on Darwin. 20 .if ${BUILD_OSTYPE} == "Darwin" 21 CPPFLAGS+= -no-cpp-precomp 22 .endif 23 24 # -D_FILE_OFFSET_BITS=64 produces a much more amenable `struct stat', and 25 # other file ops, on many systems, without changing function names. 26 27 CPPFLAGS+= -I. -I./include -I${.CURDIR} -I${.CURDIR}/sys \ 28 -DHAVE_NBTOOL_CONFIG_H=1 -D_FILE_OFFSET_BITS=64 29 30 .PATH: ${.CURDIR}/../../lib/libc/gen \ 31 ${.CURDIR}/../../lib/libc/hash \ 32 ${.CURDIR}/../../lib/libc/hash/md2 \ 33 ${.CURDIR}/../../lib/libc/hash/md5 \ 34 ${.CURDIR}/../../lib/libc/hash/rmd160 \ 35 ${.CURDIR}/../../lib/libc/hash/sha1 \ 36 ${.CURDIR}/../../lib/libc/hash/sha2 \ 37 ${.CURDIR}/../../lib/libc/md \ 38 ${.CURDIR}/../../lib/libc/stdio \ 39 ${.CURDIR}/../../lib/libc/stdlib \ 40 ${.CURDIR}/../../lib/libc/string \ 41 ${.CURDIR}/../../lib/libutil \ 42 ${.CURDIR}/../../common/lib/libc/string \ 43 ${.CURDIR}/../../common/lib/libc/hash/rmd160 \ 44 ${.CURDIR}/../../common/lib/libc/hash/sha1 \ 45 ${.CURDIR}/../../common/lib/libc/hash/sha2 \ 46 ${.CURDIR}/../../common/lib/libc/md \ 47 ${.CURDIR}/../../common/lib/libc/stdlib \ 48 ${.CURDIR}/../../usr.bin/lex 49 50 DPSRCS+= defs.mk 51 CLEANFILES+= config.log config.status configure.lineno *.stamp 52 53 # Get components of Berkeley DB. 54 _CURDIR:= ${.CURDIR} 55 .CURDIR:= ${_CURDIR}/../../lib/libc 56 .include "${.CURDIR}/db/Makefile.inc" 57 .CURDIR:= ${_CURDIR} 58 59 SRCS:= ${SRCS:Nndbm*.c} 60 61 config.cache: include/.stamp configure nbtool_config.h.in defs.mk.in 62 rm -f ${.TARGET} 63 CC=${HOST_CC:Q} CFLAGS=${HOST_CFLAGS:Q} LDFLAGS=${HOST_LDFLAGS:Q} \ 64 ${HOST_SH} ${.CURDIR}/configure --cache-file=config.cache 65 66 defs.mk: config.cache 67 @touch ${.TARGET} 68 69 # Run by hand, then "configure" script committed: 70 regen: 71 cd ${.CURDIR} && ${TOOLDIR}/bin/${_TOOL_PREFIX}autoconf 72 73 include/.stamp: 74 mkdir -p include/sys include/machine include/rpc 75 @touch ${.TARGET} 76 77 cleandir: 78 -rm -f nbtool_config.h confdefs.h defs.mk 79 -rm -r -f include 80 -rm -f config.cache 81 82 HOST_CPPFLAGS:= ${CPPFLAGS} 83 CPPFLAGS:= # empty 84 85 .include <bsd.hostlib.mk> 86