diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-05-11 05:40:55 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-05-11 05:40:55 +0000 |
commit | fd15708e6476164990e7b364dc5b2aa1600f8e89 (patch) | |
tree | 7627bd8a8c546f2fafd99fb52c1f96fdf4b242ce /libc/misc/time/Makefile | |
parent | a4f07581502ee212aa45e7b0049fdd126dd10b40 (diff) |
Begin the process of reworking the time functions for proper
time zone and locale support (in theory). More work is
still needed.
-Erik
Diffstat (limited to 'libc/misc/time/Makefile')
-rw-r--r-- | libc/misc/time/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/misc/time/Makefile b/libc/misc/time/Makefile index ae32f94a2..62fafd75f 100644 --- a/libc/misc/time/Makefile +++ b/libc/misc/time/Makefile @@ -26,7 +26,8 @@ include $(TOPDIR)Rules.mak CSRC=localtime.c gmtime.c asctime.c ctime.c asc_conv.c tm_conv.c mktime.c \ localtime_r.c gmtime_r.c asctime_r.c ctime_r.c utimes.c adjtime.c \ - clock.c difftime.c time.c ftime.c strftime.c strptime.c __time_locale.c + clock.c difftime.c time.c ftime.c strftime.c strptime.c __time_locale.c \ + __time_static.c COBJS=$(patsubst %.c,%.o, $(CSRC)) OBJS=$(COBJS) |