OSDN Git Service

Kill initfini.awk
[uclinux-h8/uClibc.git] / libc / sysdeps / linux / common / Makefile
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
19 TOPDIR=../../../../
20 include $(TOPDIR)Rules.mak
21
22 CSRC=   waitpid.c getdnnm.c gethstnm.c getcwd.c ptrace.c \
23         mkfifo.c setegid.c wait.c getpagesize.c seteuid.c \
24         wait3.c setpgrp.c getdtablesize.c create_module.c \
25         cmsg_nxthdr.c longjmp.c open64.c ftruncate64.c mmap64.c \
26         truncate64.c getrlimit64.c setrlimit64.c creat64.c \
27         llseek.c pread_write.c _exit.c sync.c getdirname.c \
28         sendfile64.c xstatconv.c getdents.c getdents64.c vfork.c \
29         ulimit.c
30 ifneq ($(strip $(EXCLUDE_BRK)),y)
31 CSRC+=sbrk.c
32 endif
33 ifeq ($(strip $(UCLIBC_PROFILING)),y)
34 CSRC+=gmon.c
35 endif
36 COBJS=$(patsubst %.c,%.o, $(CSRC))
37
38 MSRC=syscalls.c
39 MOBJ=$(shell ./list_syscalls.sh)
40
41 OBJ=$(COBJS) $(MOBJ)
42
43 all: $(STR_SYSCALLS) $(OBJ) $(LIBC)
44
45 $(LIBC): ar-target
46
47 ar-target: $(OBJ)
48         $(AR) $(ARFLAGS) $(LIBC) $(OBJ)
49
50 $(MOBJ): $(MSRC)
51         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
52         $(STRIPTOOL) -x -R .note -R .comment $*.o
53
54 $(COBJS): %.o : %.c
55         $(CC) $(CFLAGS) -c $< -o $@
56         $(STRIPTOOL) -x -R .note -R .comment $*.o
57
58 headers:
59         $(LN) -fs ../libc/sysdeps/linux/common/fpu_control.h $(TOPDIR)/include/
60
61 clean:
62         $(RM) *.[oa] *~ core crt[in].* *.S