minix/lib/stdtime/Makefile.in
Ben Gras 056ac0a0d3 replace library time handling functions
mktime, tzset, asctime, ctime, gmtime, localtime, strftime
with zoneinfo implementations in src/commands/zoneinfo, referenced
from src/lib/stdtime/Makefile.in.
2007-03-30 15:36:49 +00:00

15 lines
196 B
Makefile

# Makefile for lib/stdtime.
Z=../../commands/zoneinfo
CFLAGS="-O -D_MINIX -D_POSIX_SOURCE -D__USG -I$Z"
LIBRARIES=libc
libc_FILES="
$Z/asctime.c
$Z/localtime.c
$Z/strftime.c
"
TYPE=both