Makefile 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk>
  2. # Makefile for uCLibc
  3. #
  4. # Copyright (C) 2000 by Lineo, inc.
  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 General Public License for more
  14. # details.
  15. #
  16. # You should have received a copy of the GNU General Public License along with
  17. # this program; if not, write to the Free Software Foundation, Inc., 59 Temple
  18. # 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. LIBC=$(TOPDIR)libc.a
  26. CSRC =closedir.o dirfd.o getdents.o getdnnm.o gethstnm.o getpagesize.o \
  27. isatty.o kernel_version.o mkfifo.o opendir.o readdir.o rewinddir.o \
  28. seekdir.o setegid.o seteuid.o setpgrp.o statfix.o tcgetatr.o tell.o \
  29. telldir.o wait.o wait3.o _xmknod.o _fxstat.o _lxstat.o _xstat.o \
  30. libc_init.o
  31. COBJS=$(patsubst %.c,%.o, $(CSRC))
  32. MSRC=syscalls.c
  33. MOBJ=$(shell ./list_syscalls.sh)
  34. OBJ=$(COBJS) $(MOBJ)
  35. all: $(OBJ) $(LIBC)
  36. $(LIBC): ar-target
  37. ar-target: $(OBJ)
  38. $(AR) $(ARFLAGS) $(LIBC) $(OBJ)
  39. $(MOBJ): $(MSRC)
  40. $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
  41. $(STRIPTOOL) -x -R .note -R .comment $*.o
  42. $(COBJS):
  43. $(CC) $(CFLAGS) -g $< -c $*.c -o $*.o
  44. #$(STRIPTOOL) -x -R .note -R .comment $*.o
  45. clean:
  46. rm -f *.[oa] *~ core