Makefile 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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= wstring.c
  26. MOBJ= basename.o bcopy.o bzero.o dirname.o ffs.o memccpy.o memchr.o memcmp.o \
  27. memcpy.o memmove.o mempcpy.o memrchr.o memset.o rawmemchr.o stpcpy.o \
  28. stpncpy.o strcasecmp.o strcasestr.o strcat.o strchrnul.o strchr.o \
  29. strcmp.o strcpy.o strcspn.o strdup.o strlen.o strncasecmp.o strncat.o \
  30. strncmp.o strncpy.o strndup.o strnlen.o strpbrk.o strrchr.o strsep.o \
  31. strspn.o strstr.o strtok.o strtok_r.o strerror.o _susv3_strerror_r.o \
  32. _string_syserrmsgs.o _glibc_strerror_r.o \
  33. _string_syssigmsgs.o sys_siglist.o strsignal.o psignal.o \
  34. __xpg_basename.o strlcat.o strlcpy.o sys_errlist.o memmem.o
  35. MOBJW= wcscasecmp.o wcscat.o wcschrnul.o wcschr.o wcscmp.o wcscpy.o wcscspn.o \
  36. wcsdup.o wcslen.o wcsncasecmp.o wcsncat.o wcsncmp.o wcsncpy.o \
  37. wcsnlen.o wcspbrk.o wcsrchr.o wcsspn.o wcsstr.o wcstok.o wmemchr.o \
  38. wmemcmp.o wmemcpy.o wmemmove.o wmempcpy.o wmemset.o wcpcpy.o wcpncpy.o \
  39. __wcslcpy.o \
  40. wcsxfrm.o strxfrm.o # wcscoll strcoll.o
  41. MOBJx=
  42. MOBJWx=
  43. ifeq ($(UCLIBC_HAS_XLOCALE),y)
  44. MOBJx += strcasecmp_l.o strncasecmp_l.o
  45. MOBJWx += wcscasecmp_l.o wcsncasecmp_l.o wcsxfrm_l.o strxfrm_l.o
  46. endif
  47. #ffsl ffsll
  48. OBJS=$(MOBJ) $(MOBJx)
  49. ifeq ($(UCLIBC_HAS_WCHAR),y)
  50. OBJS += $(MOBJW) $(MOBJWx)
  51. endif
  52. all: $(OBJS) $(LIBC)
  53. $(LIBC): ar-target
  54. ar-target: $(OBJS)
  55. $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
  56. $(MOBJ): $(MSRC)
  57. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  58. $(STRIPTOOL) -x -R .note -R .comment $*.o
  59. $(MOBJx): $(MSRC)
  60. $(CC) $(CFLAGS) -DL_$* -D__UCLIBC_DO_XLOCALE $< -c -o $*.o
  61. $(STRIPTOOL) -x -R .note -R .comment $*.o
  62. $(MOBJW): $(MSRC)
  63. $(CC) $(CFLAGS) -DWANT_WIDE -DL_$* $< -c -o $*.o
  64. $(STRIPTOOL) -x -R .note -R .comment $*.o
  65. $(MOBJWx): $(MSRC)
  66. $(CC) $(CFLAGS) -DWANT_WIDE -DL_$* -D__UCLIBC_DO_XLOCALE $< -c -o $*.o
  67. $(STRIPTOOL) -x -R .note -R .comment $*.o
  68. $(COBJS): %.o : %.c
  69. $(CC) $(CFLAGS) -c $< -o $@
  70. $(STRIPTOOL) -x -R .note -R .comment $*.o
  71. clean:
  72. $(RM) *.[oa] *~ core