1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # Makefile for uClibc
- #
- # Copyright (C) 2000-2008 Erik Andersen <andersen@uclibc.org>
- #
- # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
- #
- CSRC := adjtime.c
- ifeq ($(UCLIBC_SUSV3_LEGACY),y)
- CSRC += ftime.c
- endif
- # 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_clean
- misc_time_clean:
- $(do_rm) $(addprefix $(MISC_TIME_OUT)/*., o os)
|