Makefile 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. ASFLAGS=$(CFLAGS)
  21. # If you're looking for vfork(), it is defined in include/unistd.h
  22. ifeq ($(UCLIBC_HAS_MMU),y)
  23. CRT0_SRC = crt0.c
  24. else
  25. CRT0_SRC = crt0.S
  26. endif
  27. CRT0_OBJ = crt0.o crt1.o
  28. SSRC= __longjmp.S bsd-_setjmp.S bsd-setjmp.S clone.S setjmp.S vfork.S
  29. SOBJS=$(patsubst %.S,%.o, $(SSRC))
  30. CSRC=ptrace.c brk.c
  31. COBJS=$(patsubst %.c,%.o, $(CSRC))
  32. OBJS=$(SOBJS) $(MOBJ) $(COBJS)
  33. all: $(OBJS) $(LIBC)
  34. $(LIBC): ar-target
  35. ar-target: $(OBJS) $(CRT0_OBJ)
  36. $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
  37. cp $(CRT0_OBJ) $(TOPDIR)lib/
  38. $(CRT0_OBJ): $(CRT0_SRC)
  39. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  40. $(STRIPTOOL) -x -R .note -R .comment $*.o
  41. $(SOBJS): %.o : %.S
  42. $(CC) $(CFLAGS) -c $< -o $@
  43. $(STRIPTOOL) -x -R .note -R .comment $*.o
  44. $(COBJS): %.o : %.c
  45. $(CC) $(CFLAGS) -c $< -o $@
  46. $(STRIPTOOL) -x -R .note -R .comment $*.o
  47. headers:
  48. ifneq ($(strip $(HAVE_ELF)),y)
  49. echo "Working around compiler bug in the m68k-pic-coff toolchain"
  50. cd $(TOPDIR)/include && ln -fs ../libc/sysdeps/linux/m68k/float.h .
  51. endif
  52. cd $(TOPDIR)/include && ln -fs ../libc/sysdeps/linux/m68k/fpu_control.h .
  53. clean:
  54. $(RM) *.[oa] *~ core
  55. $(RM) bits/sysnum.h
  56. ifneq ($(strip $(HAVE_ELF)),y)
  57. $(RM) $(TOPDIR)/include/float.h
  58. endif