From a80fc77b658a7883df95ac41ad83ac9ff7c8ff07 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Tue, 25 Oct 2005 22:17:39 +0000 Subject: All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other archs lack proper crt1. The Makefiles in extra/scripts are intended to be linked into each dir, where it is necessary to build locally. --- libc/misc/time/Makefile.in | 69 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 libc/misc/time/Makefile.in (limited to 'libc/misc/time') diff --git a/libc/misc/time/Makefile.in b/libc/misc/time/Makefile.in new file mode 100644 index 000000000..986e5ed29 --- /dev/null +++ b/libc/misc/time/Makefile.in @@ -0,0 +1,69 @@ +# Makefile for uClibc +# +# Copyright (C) 2000 by Lineo, inc. +# Copyright (C) 2000-2005 Erik Andersen +# +# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. +# + +MSRC:=time.c +MOBJ:= asctime.o asctime_r.o clock.o ctime.o ctime_r.o gmtime.o gmtime_r.o \ + localtime.o localtime_r.o mktime.o strftime.o strptime.o tzset.o \ + _time_t2tm.o __time_tm.o _time_mktime.o dysize.o timegm.o \ + _time_mktime_tzi.o _time_localtime_tzi.o +MOBJx= + +ifeq ($(UCLIBC_HAS_FLOATS),y) +MOBJ+=difftime.o +endif +ifeq ($(UCLIBC_HAS_XLOCALE),y) +MOBJx+=strftime_l.o strptime_l.o +endif + +ifeq ($(UCLIBC_HAS_WCHAR),y) +MOBJ+=wcsftime.o +ifeq ($(UCLIBC_HAS_XLOCALE),y) +MOBJx+=wcsftime_l.o +endif +endif + +CSRC:=adjtime.c ftime.c + +MISC_TIME_DIR:=$(top_srcdir)libc/misc/time +MISC_TIME_OUT:=$(top_builddir)libc/misc/time + +MISC_TIME_NO_MULTI:=strftime.o + +MISC_TIME_SRC:=$(patsubst %.c,$(MISC_TIME_DIR)/%.c,$(CSRC)) +MISC_TIME_OBJ:=$(patsubst %.c,$(MISC_TIME_OUT)/%.o,$(CSRC)) + +MISC_TIME_MSRC:=$(patsubst %.c,$(MISC_TIME_DIR)/%.c,$(MSRC)) +MISC_TIME_MOBJ:=$(patsubst %.o,$(MISC_TIME_OUT)/%.o,$(MOBJ)) +MISC_TIME_MOBJx=$(patsubst %.o,$(MISC_TIME_OUT)/%.o,$(MOBJx)) + +MISC_TIME_DEF:=$(patsubst %,-DL_%,$(subst .o,,$(notdir $(filter-out $(MISC_TIME_OUT)/$(MISC_TIME_NO_MULTI),$(MISC_TIME_MOBJ))))) + +MISC_TIME_OBJS:=$(MISC_TIME_OBJ) $(MISC_TIME_MOBJ) + +$(MISC_TIME_MOBJ) $(MISC_TIME_MOBJ:.o=.os): $(MISC_TIME_MSRC) + $(compile.m) + +$(MISC_TIME_MOBJx) $(MISC_TIME_MOBJx:.o=.os): $(MISC_TIME_MSRC) + $(compile.m) -D__UCLIBC_DO_XLOCALE + +libc-a-y+=$(MISC_TIME_OBJS) +libc-a-$(UCLIBC_HAS_XLOCALE)+=$(MISC_TIME_MOBJx) +libc-a-pic-y+=$(MISC_TIME_OBJS:.o=.os) +libc-a-pic-$(UCLIBC_HAS_XLOCALE)+=$(MISC_TIME_MOBJx:.o=.os) +libc-so-y+=$(MISC_TIME_OBJS:.o=.os) +libc-so-$(UCLIBC_HAS_XLOCALE)+=$(MISC_TIME_MOBJx:.o=.os) + +CFLAGS-multi-y+=$(MISC_TIME_DEF) +libc-multi-y+=$(MISC_TIME_MSRC) +libc-nomulti-y+=$(MISC_TIME_OUT)/$(MISC_TIME_NO_MULTI) +libc-nomulti-$(UCLIBC_HAS_XLOCALE)+=$(MISC_TIME_MOBJx) + +objclean-y+=misc_time_objclean + +misc_time_objclean: + $(RM) $(MISC_TIME_OUT)/*.{o,os} -- cgit v1.2.3