Makefile 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2001,2002 NEC Corporation
  4. # Copyright (C) 2001,2002 Miles Bader <miles@gnu.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. TOPDIR=../../../../
  20. include $(TOPDIR)Rules.mak
  21. #FIXME -- this arch should include its own crti.S and crtn.S
  22. UCLIBC_CTOR_DTOR=n
  23. CFLAGS += -I..
  24. SFLAGS = $(CFLAGS) -D__ASSEMBLER -DASM_GLOBAL_DIRECTIVE=.globl
  25. TARGET_MACHINE_TYPE=$(shell $(CC) -dumpmachine)
  26. CRT0_SRC = crt0.S
  27. CRT0_OBJ = crt0.o crt1.o
  28. CTOR_TARGETS=$(TOPDIR)lib/crti.o $(TOPDIR)lib/crtn.o
  29. SSRC = setjmp.S __longjmp.S vfork.S
  30. SOBJS = $(patsubst %.S,%.o, $(SSRC))
  31. CSRC = _mmap.c syscall.c clone.c
  32. COBJS = $(patsubst %.c,%.o, $(CSRC))
  33. OBJS = $(SOBJS) $(COBJS)
  34. ifeq ($(strip $(UCLIBC_HAS_SOFT_FLOAT)),y)
  35. SAFECFLAGS += $(call check_gcc,-msoft-float,)
  36. endif
  37. all: $(OBJS) $(LIBC)
  38. $(LIBC): ar-target
  39. ar-target: $(OBJS) $(CRT0_OBJ) $(CTOR_TARGETS)
  40. $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
  41. cp $(CRT0_OBJ) $(TOPDIR)lib/
  42. $(CRT0_OBJ): $(CRT0_SRC)
  43. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  44. $(STRIPTOOL) -x -R .note -R .comment $*.o
  45. $(SOBJS): %.o : %.S
  46. $(CC) $(SFLAGS) -c $< -o $@
  47. $(STRIPTOOL) -x -R .note -R .comment $*.o
  48. $(COBJS): %.o : %.c
  49. $(CC) $(CFLAGS) -c $< -o $@
  50. $(STRIPTOOL) -x -R .note -R .comment $*.o
  51. ifeq ($(strip $(UCLIBC_CTOR_DTOR)),y)
  52. crti.o: crti.S
  53. $(CC) $(SAFECFLAGS) -c crti.S -o crti.o
  54. $(TOPDIR)lib/crti.o: crti.o
  55. $(INSTALL) -d $(TOPDIR)lib/
  56. cp crti.o $(TOPDIR)lib/
  57. crtn.o: crtn.S
  58. $(CC) $(SAFECFLAGS) -c crtn.S -o crtn.o
  59. $(TOPDIR)lib/crtn.o: crtn.o
  60. $(INSTALL) -d $(TOPDIR)lib/
  61. cp crtn.o $(TOPDIR)lib/
  62. else
  63. $(TOPDIR)lib/crti.o:
  64. $(INSTALL) -d $(TOPDIR)lib/
  65. $(AR) $(ARFLAGS) $(TOPDIR)lib/crti.o
  66. $(TOPDIR)lib/crtn.o:
  67. $(INSTALL) -d $(TOPDIR)lib/
  68. $(AR) $(ARFLAGS) $(TOPDIR)lib/crtn.o
  69. endif
  70. headers:
  71. clean:
  72. $(RM) *.[oa] *~ core
  73. $(RM) bits/sysnum.h