123456789101112131415161718192021222324252627282930313233343536373839 |
- # Makefile for uClibc
- #
- # Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
- #
- # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
- #
- CSRC := adjtime.c ftime.c
- # multi source time.c
- CSRC += asctime.c asctime_r.c clock.c ctime.c ctime_r.c gmtime.c gmtime_r.c \
- localtime.c localtime_r.c mktime.c strftime.c strptime.c tzset.c \
- _time_t2tm.c __time_tm.c _time_mktime.c dysize.c timegm.c \
- _time_mktime_tzi.c _time_localtime_tzi.c
- ifeq ($(UCLIBC_HAS_FLOATS),y)
- CSRC += difftime.c
- endif
- ifeq ($(UCLIBC_HAS_XLOCALE),y)
- CSRC += strftime_l.c strptime_l.c
- endif
- ifeq ($(UCLIBC_HAS_WCHAR),y)
- CSRC += wcsftime.c
- ifeq ($(UCLIBC_HAS_XLOCALE),y)
- CSRC += wcsftime_l.c
- endif
- endif
- MISC_TIME_DIR := $(top_srcdir)libc/misc/time
- MISC_TIME_OUT := $(top_builddir)libc/misc/time
- MISC_TIME_SRC := $(patsubst %.c,$(MISC_TIME_DIR)/%.c,$(CSRC))
- MISC_TIME_OBJ := $(patsubst %.c,$(MISC_TIME_OUT)/%.o,$(CSRC))
- libc-y += $(MISC_TIME_OBJ)
- objclean-y += misc_time_objclean
- misc_time_objclean:
- $(RM) $(MISC_TIME_OUT)/*.{o,os}
|