Makefile 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. # Note: The *64.o objects are empty when compiled without large file support.
  26. #
  27. # Note: Use the libpthreads of: flockfile.o ftrylockfile.o funlockfile.o
  28. # Also, maybe move __fsetlocking.o as well?
  29. MSRC = stdio.c
  30. MOBJ = fclose.o fflush.o fopen.o freopen.o perror.o remove.o \
  31. setbuf.o setvbuf.o fgetc.o fgets.o fputc.o fputs.o \
  32. getc.o getchar.o gets.o putc.o putchar.o puts.o \
  33. ungetc.o fread.o fwrite.o fgetpos.o fseek.o fsetpos.o ftell.o \
  34. rewind.o clearerr.o feof.o ferror.o \
  35. fileno.o fdopen.o getw.o putw.o setbuffer.o setlinebuf.o fcloseall.o \
  36. fopen64.o freopen64.o ftello64.o fseeko64.o fsetpos64.o fgetpos64.o \
  37. __fbufsize.o __freading.o __fwriting.o __freadable.o __fwritable.o \
  38. __flbf.o __fpurge.o __fpending.o _flushlbf.o \
  39. fopencookie.o fmemopen.o open_memstream.o \
  40. __fsetlocking.o flockfile.o ftrylockfile.o funlockfile.o \
  41. _stdio_fopen.o _stdio_fread.o _stdio_fwrite.o _stdio_adjpos.o \
  42. _stdio_lseek.o _stdio_init.o \
  43. _stdio_fsfopen.o _stdio_fdout.o _uintmaxtostr.o _stdio_strerror_r.o \
  44. getdelim.o getline.o ctermid.o
  45. MSRC2= printf.c
  46. MOBJ2= vsnprintf.o vdprintf.o vasprintf.o vprintf.o vsprintf.o \
  47. fprintf.o snprintf.o dprintf.o asprintf.o printf.o sprintf.o \
  48. _store_inttype.o _load_inttype.o
  49. MSRC3=scanf.c
  50. MOBJ3=scanf.o sscanf.o fscanf.o vscanf.o vsscanf.o vfscanf.o \
  51. __scan_cookie.o __psfs_parse_spec.o __psfs_do_numeric.o
  52. ifeq ($(UCLIBC_HAS_WCHAR),y)
  53. MOBJ += _wstdio_fwrite.o
  54. MOBJ2 += fwprintf.o wprintf.o swprintf.o vwprintf.o vswprintf.o \
  55. vfwprintf.o
  56. MOBJ3 += wscanf.o swscanf.o fwscanf.o vwscanf.o vswscanf.o vfwscanf.o
  57. endif
  58. ifneq ($(USE_OLD_VFPRINTF),y)
  59. MOBJ2 += _ppfs_init.o _ppfs_prepargs.o _ppfs_setargs.o \
  60. _ppfs_parsespec.o vfprintf.o \
  61. register_printf_function.o parse_printf_format.o
  62. endif
  63. ifeq ($(UCLIBC_HAS_FLOATS),y)
  64. MOBJ2 += _fpmaxtostr.o
  65. endif
  66. CSRC=popen.c tmpfile.c tmpnam.c tmpnam_r.c tempnam.c
  67. ifeq ($(USE_OLD_VFPRINTF),y)
  68. CSRC += old_vfprintf.c
  69. endif
  70. COBJS=$(patsubst %.c,%.o, $(CSRC))
  71. OBJS=$(MOBJ) $(MOBJ2) $(MOBJ3) $(COBJS)
  72. all: $(OBJS) $(LIBC)
  73. $(LIBC): ar-target
  74. ar-target: $(OBJS)
  75. $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
  76. $(MOBJ): $(MSRC)
  77. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  78. $(STRIPTOOL) -x -R .note -R .comment $*.o
  79. $(MOBJ2): $(MSRC2)
  80. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  81. $(STRIPTOOL) -x -R .note -R .comment $*.o
  82. $(MOBJ3): $(MSRC3)
  83. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  84. $(STRIPTOOL) -x -R .note -R .comment $*.o
  85. $(COBJS): %.o : %.c
  86. $(CC) $(CFLAGS) -c $< -o $@
  87. $(STRIPTOOL) -x -R .note -R .comment $*.o
  88. $(OBJ): Makefile
  89. clean:
  90. $(RM) *.[oa] *~ core