Makefile 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2003 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # This program is free software; you can redistribute it and/or modify it under
  6. # the terms of the GNU Library General Public License as published by the Free
  7. # Software Foundation; either version 2 of the License, or (at your option) any
  8. # later version.
  9. #
  10. # This program is distributed in the hope that it will be useful, but WITHOUT
  11. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  12. # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Library General Public License
  16. # along with this program; if not, write to the Free Software Foundation, Inc.,
  17. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. TOPDIR=../../../../
  19. include $(TOPDIR)Rules.mak
  20. CSRC= waitpid.c getdnnm.c gethstnm.c getcwd.c ptrace.c \
  21. mkfifo.c setegid.c wait.c getpagesize.c seteuid.c \
  22. wait3.c setpgrp.c getdtablesize.c create_module.c \
  23. cmsg_nxthdr.c longjmp.c open64.c ftruncate64.c mmap64.c \
  24. truncate64.c getrlimit64.c setrlimit64.c creat64.c \
  25. llseek.c pread_write.c _exit.c sync.c getdirname.c \
  26. sendfile64.c xstatconv.c getdents.c getdents64.c vfork.c \
  27. ulimit.c
  28. ifneq ($(strip $(EXCLUDE_BRK)),y)
  29. CSRC+=sbrk.c
  30. endif
  31. ifeq ($(strip $(UCLIBC_PROFILING)),y)
  32. CSRC+=gmon.c
  33. endif
  34. COBJS=$(patsubst %.c,%.o, $(CSRC))
  35. MSRC=syscalls.c
  36. MOBJ=$(shell ./list_syscalls.sh)
  37. CTOR_TARGETS=$(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o
  38. SAFECFLAGS=$(XWARNINGS) $(OPTIMIZATION) $(XARCH_CFLAGS) $(CPU_CFLAGS) -fno-builtin
  39. #
  40. # on SH4 addition of -g kills the initfini stuff, removed here for all
  41. # platforms as I suspect no one want initfini compiled -g :-) - davidm
  42. #
  43. SAFECFLAGS := $(filter-out -g,$(SAFECFLAGS))
  44. ifeq ($(strip $(DOPIC)),y)
  45. SAFECFLAGS+=$(PICFLAG)
  46. endif
  47. ifeq ($(strip $(UCLIBC_PROFILING)),y)
  48. SAFECFLAGS+=-DGMON_SUPPORT
  49. endif
  50. OBJ=$(COBJS) $(MOBJ)
  51. all: $(STR_SYSCALLS) $(OBJ) $(LIBC) headers
  52. $(LIBC): ar-target
  53. ar-target: $(OBJ) $(CTOR_TARGETS)
  54. $(AR) $(ARFLAGS) $(LIBC) $(OBJ)
  55. $(MOBJ): $(MSRC)
  56. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  57. $(STRIPTOOL) -x -R .note -R .comment $*.o
  58. $(COBJS): %.o : %.c
  59. $(CC) $(CFLAGS) -c $< -o $@
  60. $(STRIPTOOL) -x -R .note -R .comment $*.o
  61. ifeq ($(strip $(UCLIBC_CTOR_DTOR)),y)
  62. initfini.S: initfini.c
  63. $(CC) $(SAFECFLAGS) -I$(TOPDIR)include -c initfini.c -S -o initfini.S
  64. crti.S crtn.S: initfini.S $(TOPDIR)/extra/scripts/initfini.awk
  65. $(AWK) -f $(TOPDIR)extra/scripts/initfini.awk initfini.S
  66. crti.o: crti.S
  67. $(CC) $(SAFECFLAGS) -c crti.S -o crti.o
  68. $(TOPDIR)lib/crti.o: crti.o
  69. $(INSTALL) -d $(TOPDIR)lib/
  70. cp crti.o $(TOPDIR)lib/
  71. crtn.o: crtn.S
  72. $(CC) $(SAFECFLAGS) -c crtn.S -o crtn.o
  73. $(TOPDIR)lib/crtn.o: crtn.o
  74. $(INSTALL) -d $(TOPDIR)lib/
  75. cp crtn.o $(TOPDIR)lib/
  76. else
  77. $(TOPDIR)lib/crti.o:
  78. $(INSTALL) -d $(TOPDIR)lib/
  79. $(AR) $(ARFLAGS) $(TOPDIR)lib/crti.o
  80. $(TOPDIR)lib/crtn.o:
  81. $(INSTALL) -d $(TOPDIR)lib/
  82. $(AR) $(ARFLAGS) $(TOPDIR)lib/crtn.o
  83. endif
  84. headers:
  85. cd $(TOPDIR)/include && ln -fs ../libc/sysdeps/linux/common/fpu_control.h .
  86. clean:
  87. $(RM) *.[oa] *~ core crt[in].* *.S