Makefile 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 strxfrm.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. MSRC=string.c
  38. # MOBJ=strlen.o strcat.o strcpy.o strchr.o strcmp.o strncat.o strncpy.o \
  39. # strncmp.o strrchr.o strdup.o strndup.o memcpy.o memccpy.o memset.o \
  40. # memmove.o memcmp.o memchr.o ffs.o strnlen.o strxfrm.o stpcpy.o \
  41. # stpncpy.o memrchr.o mempcpy.o
  42. MOBJ=strxfrm.o
  43. # ifeq ($(HAS_LOCALE),true)
  44. # MOBJ += strcoll.o
  45. # endif
  46. MSRC1=strsignal.c
  47. MOBJ1=strsignal.o psignal.o
  48. MOBJ2=
  49. #MSRC2=strstr.c
  50. #MOBJ2=strstr.o strcasestr.o
  51. # CSRC=strpbrk.c strsep.c strtok.c strtok_r.c strcspn.c \
  52. # strspn.c strcasecmp.c strncasecmp.c strerror.c bcopy.c bzero.c \
  53. # bcmp.c sys_errlist.c dirname.c basename.c
  54. CSRC=strerror.c sys_errlist.c
  55. COBJS=$(patsubst %.c,%.o, $(CSRC))
  56. OBJS=$(MOBJ) $(MOBJ1) $(MOBJ2) $(COBJS) $(MOBJW)
  57. ifeq ($(HAS_WCHAR),true)
  58. OBJS += $(MOBJW2)
  59. endif
  60. all: $(OBJS) $(LIBC)
  61. $(LIBC): ar-target
  62. ar-target: $(OBJS)
  63. $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
  64. $(MOBJW): $(MSRCW)
  65. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  66. $(STRIPTOOL) -x -R .note -R .comment $*.o
  67. $(MOBJW2): $(MSRCW)
  68. $(CC) $(CFLAGS) -DWANT_WIDE -DL_$* $< -c -o $*.o
  69. $(STRIPTOOL) -x -R .note -R .comment $*.o
  70. $(MOBJ): $(MSRC)
  71. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  72. $(STRIPTOOL) -x -R .note -R .comment $*.o
  73. $(MOBJ2): $(MSRC2)
  74. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  75. $(STRIPTOOL) -x -R .note -R .comment $*.o
  76. $(MOBJ1): $(MSRC1)
  77. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  78. $(STRIPTOOL) -x -R .note -R .comment $*.o
  79. $(COBJS): %.o : %.c
  80. $(CC) $(CFLAGS) -c $< -o $@
  81. $(STRIPTOOL) -x -R .note -R .comment $*.o
  82. clean:
  83. rm -f *.[oa] *~ core