d0fd0203fb
This reduces build output, need for recalculating paths, and makes it clearer which paths are relative to what areas in the source tree. The change in performance over a locally mounted UFS filesystem was negligible in my testing, but this may more positively impact other filesystems like NFS. LIBC_SRCTOP was left alone so Juniper (and other users) can continue to manipulate lib/libc/Makefile (and other Makefile.inc's under lib/libc) as include Makefiles with custom options. Discussed with: marcel, sjg MFC after: 1 week Reviewed by: emaste Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D9207
25 lines
729 B
Makefile
25 lines
729 B
Makefile
# Makefile.inc,v 1.2 1994/09/13 21:26:01 wollman Exp
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${LIBC_SRCTOP}/stdtime ${SRCTOP}/contrib/tzcode/stdtime
|
|
|
|
SRCS+= asctime.c difftime.c localtime.c strftime.c strptime.c timelocal.c \
|
|
time32.c
|
|
|
|
SYM_MAPS+= ${LIBC_SRCTOP}/stdtime/Symbol.map
|
|
|
|
CFLAGS+= -I${SRCTOP}/contrib/tzcode/stdtime -I${LIBC_SRCTOP}/stdtime
|
|
|
|
CFLAGS.localtime.c= -fwrapv
|
|
|
|
MAN+= ctime.3 strftime.3 strptime.3 time2posix.3
|
|
MAN+= tzfile.5
|
|
|
|
MLINKS+=ctime.3 asctime.3 ctime.3 difftime.3 ctime.3 gmtime.3 \
|
|
ctime.3 localtime.3 ctime.3 mktime.3 ctime.3 timegm.3 \
|
|
ctime.3 ctime_r.3 ctime.3 localtime_r.3 ctime.3 gmtime_r.3 \
|
|
ctime.3 asctime_r.3
|
|
MLINKS+=strftime.3 strftime_l.3
|
|
MLINKS+=strptime.3 strptime_l.3
|
|
MLINKS+=time2posix.3 posix2time.3
|