Makefile 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. MSRCW= wstring.c
  26. MOBJW= 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 \
  32. __xpg_basename.o # strcoll.o strerror.o
  33. MOBJW2= wcscasecmp.o wcscat.o wcschrnul.o wcschr.o wcscmp.o wcscpy.o wcscspn.o \
  34. wcsdup.o wcslen.o wcsncasecmp.o wcsncat.o wcsncmp.o wcsncpy.o \
  35. wcsnlen.o wcspbrk.o wcsrchr.o wcsspn.o wcsstr.o wcstok.o wmemchr.o \
  36. wmemcmp.o wmemcpy.o wmemmove.o wmempcpy.o wmemset.o
  37. # ifeq ($(HAS_LOCALE),true)
  38. # MOBJ += strcoll.o
  39. # endif
  40. MSRC1=strsignal.c
  41. MOBJ1=strsignal.o psignal.o
  42. MOBJ2=
  43. #MSRC2=strstr.c
  44. #MOBJ2=strstr.o strcasestr.o
  45. # CSRC=strpbrk.c strsep.c strtok.c strtok_r.c strcspn.c \
  46. # strspn.c strcasecmp.c strncasecmp.c strerror.c bcopy.c bzero.c \
  47. # bcmp.c sys_errlist.c dirname.c basename.c
  48. CSRC=strerror.c sys_errlist.c strxfrm.c
  49. COBJS=$(patsubst %.c,%.o, $(CSRC))
  50. OBJS=$(MOBJ) $(MOBJ1) $(MOBJ2) $(COBJS) $(MOBJW)
  51. ifeq ($(HAS_WCHAR),true)
  52. OBJS += $(MOBJW2)
  53. endif
  54. all: $(OBJS) $(LIBC)
  55. $(LIBC): ar-target
  56. ar-target: $(OBJS)
  57. $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
  58. $(MOBJW): $(MSRCW)
  59. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  60. $(STRIPTOOL) -x -R .note -R .comment $*.o
  61. $(MOBJW2): $(MSRCW)
  62. $(CC) $(CFLAGS) -DWANT_WIDE -DL_$* $< -c -o $*.o
  63. $(STRIPTOOL) -x -R .note -R .comment $*.o
  64. $(MOBJ): $(MSRC)
  65. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  66. $(STRIPTOOL) -x -R .note -R .comment $*.o
  67. $(MOBJ2): $(MSRC2)
  68. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  69. $(STRIPTOOL) -x -R .note -R .comment $*.o
  70. $(MOBJ1): $(MSRC1)
  71. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  72. $(STRIPTOOL) -x -R .note -R .comment $*.o
  73. $(COBJS): %.o : %.c
  74. $(CC) $(CFLAGS) -c $< -o $@
  75. $(STRIPTOOL) -x -R .note -R .comment $*.o
  76. clean:
  77. rm -f *.[oa] *~ core