Makefile 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000 by Lineo, inc.
  4. # Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
  5. #
  6. # This program is free software; you can redistribute it and/or modify it under
  7. # the terms of the GNU Library General Public License as published by the Free
  8. # Software Foundation; either version 2 of the License, or (at your option) any
  9. # later version.
  10. #
  11. # This program is distributed in the hope that it will be useful, but WITHOUT
  12. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  13. # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  14. # details.
  15. #
  16. # You should have received a copy of the GNU Library General Public License
  17. # along with this program; if not, write to the Free Software Foundation, Inc.,
  18. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. #
  20. # Derived in part from the Linux-8086 C library, the GNU C Library, and several
  21. # other sundry sources. Files within this library are copyright by their
  22. # respective copyright holders.
  23. TOPDIR=../../../
  24. include $(TOPDIR)Rules.mak
  25. MSRC := time.c
  26. MOBJ = asctime.o asctime_r.o clock.o ctime.o ctime_r.o gmtime.o gmtime_r.o \
  27. localtime.o localtime_r.o mktime.o strftime.o strptime.o tzset.o \
  28. _time_t2tm.o __time_tm.o _time_mktime.o dysize.o timegm.o \
  29. _time_mktime_tzi.o _time_localtime_tzi.o
  30. MOBJx =
  31. ifeq ($(UCLIBC_HAS_FLOATS),y)
  32. MOBJ += difftime.o
  33. endif
  34. ifeq ($(UCLIBC_HAS_XLOCALE),y)
  35. MOBJx += strftime_l.o strptime_l.o
  36. endif
  37. ifeq ($(UCLIBC_HAS_WCHAR),y)
  38. MOBJ += wcsftime.o
  39. ifeq ($(UCLIBC_HAS_XLOCALE),y)
  40. MOBJx += wcsftime_l.o
  41. endif
  42. endif
  43. CSRC := adjtime.c ftime.c
  44. COBJS := $(patsubst %.c,%.o, $(CSRC))
  45. OBJS := $(COBJS) $(MOBJ) $(MOBJx)
  46. OBJ_LIST := ../../obj.misc.time
  47. all: $(OBJ_LIST)
  48. $(OBJ_LIST): $(OBJS)
  49. $(STRIPTOOL) -x -R .note -R .comment $^
  50. echo $(patsubst %, misc/time/%, $^) > $@
  51. $(MOBJ): $(MSRC)
  52. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  53. $(MOBJx): $(MSRC)
  54. $(CC) $(CFLAGS) -DL_$* -D__UCLIBC_DO_XLOCALE $< -c -o $*.o
  55. $(COBJS): %.o : %.c
  56. $(CC) $(CFLAGS) -c $< -o $@
  57. clean:
  58. $(RM) *.o *~ core