OpenCores
URL https://opencores.org/ocsvn/or1k_old/or1k_old/trunk

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [linux/] [uClibc/] [libc/] [unistd/] [Makefile] - Blame information for rev 1765

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1325 phoenix
# Makefile for uClibc
2
#
3
# Copyright (C) 2000-2003 Erik Andersen 
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
DIRS:=
22
 
23
MSRC1 = exec.c
24
MOBJ1 = execl.o execv.o execle.o execlp.o execvp.o
25
 
26
CSRC=   sleep.c usleep.c getpass.c sysconf.c getlogin.c \
27
        fpathconf.c confstr.c pathconf.c swab.c usershell.c \
28
        getsubopt.c
29
 
30
ifeq ($(strip $(UCLIBC_HAS_MMU)),y)
31
        CSRC += daemon.c
32
        MOBJ1 += __exec_alloc.o
33
endif
34
 
35
ifeq ($(strip $(UCLIBC_HAS_GNU_GETOPT)),y)
36
        CSRC += getopt.c
37
else
38
        CSRC += getopt-susv3.c
39
endif
40
 
41
COBJS=$(patsubst %.c,%.o, $(CSRC))
42
OBJS=$(COBJS) $(MOBJ1)
43
 
44
all: $(SYSCONF) $(OBJS) $(LIBC)
45
 
46
$(LIBC): ar-target subdirs
47
 
48
ar-target: $(OBJS)
49
        $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
50
 
51
$(MOBJ1): $(MSRC1)
52
        $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
53
        $(STRIPTOOL) -x -R .note -R .comment $*.o
54
 
55
$(COBJS): %.o : %.c
56
        $(CC) $(CFLAGS) -c $< -o $@
57
        $(STRIPTOOL) -x -R .note -R .comment $*.o
58
 
59
$(OBJ): Makefile
60
 
61
subdirs: $(patsubst %, _dir_%, $(DIRS))
62
subdirs_clean: $(patsubst %, _dirclean_%, $(DIRS))
63
 
64
$(patsubst %, _dir_%, $(DIRS)) : dummy
65
        $(MAKE) -C $(patsubst _dir_%, %, $@)
66
 
67
$(patsubst %, _dirclean_%, $(DIRS)) : dummy
68
        $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
69
 
70
.PHONY: dummy
71
dummy:
72
 
73
clean:
74
        $(RM) *.[oa] *~ core
75
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.