Makefile 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. OBJ=$(COBJS) $(MOBJ)
  38. all: $(STR_SYSCALLS) $(OBJ) $(LIBC)
  39. $(LIBC): ar-target
  40. ar-target: $(OBJ)
  41. $(AR) $(ARFLAGS) $(LIBC) $(OBJ)
  42. $(MOBJ): $(MSRC)
  43. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  44. $(STRIPTOOL) -x -R .note -R .comment $*.o
  45. $(COBJS): %.o : %.c
  46. $(CC) $(CFLAGS) -c $< -o $@
  47. $(STRIPTOOL) -x -R .note -R .comment $*.o
  48. headers:
  49. $(LN) -fs ../libc/sysdeps/linux/common/fpu_control.h $(TOPDIR)/include/
  50. clean:
  51. $(RM) *.[oa] *~ core crt[in].* *.S