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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [uClibc/] [libc/] [inet/] [Makefile] - Diff between revs 1325 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 1325 Rev 1765
# Makefile for uClibc
# Makefile for uClibc
#
#
# Copyright (C) 2000 by Lineo, inc.
# Copyright (C) 2000 by Lineo, inc.
# Copyright (C) 2000,2001 Erik Andersen 
# Copyright (C) 2000,2001 Erik Andersen 
#
#
# This program is free software; you can redistribute it and/or modify it under
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
# the terms of the GNU Library General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option) any
# Software Foundation; either version 2 of the License, or (at your option) any
# later version.
# later version.
#
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
# FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
# details.
# details.
#
#
# You should have received a copy of the GNU Library General Public License
# You should have received a copy of the GNU Library General Public License
# along with this program; if not, write to the Free Software Foundation, Inc.,
# along with this program; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
# Derived in part from the Linux-8086 C library, the GNU C Library, and several
# Derived in part from the Linux-8086 C library, the GNU C Library, and several
# other sundry sources.  Files within this library are copyright by their
# other sundry sources.  Files within this library are copyright by their
# respective copyright holders.
# respective copyright holders.
TOPDIR=../../
TOPDIR=../../
include $(TOPDIR)Rules.mak
include $(TOPDIR)Rules.mak
ifeq ($(strip $(UCLIBC_HAS_RPC)),y)
ifeq ($(strip $(UCLIBC_HAS_RPC)),y)
        DIRS=rpc
        DIRS=rpc
else
else
        DIRS=
        DIRS=
endif
endif
ALL_SUBDIRS = rpc
ALL_SUBDIRS = rpc
MSRC=addr.c
MSRC=addr.c
MOBJ=inet_aton.o inet_addr.o inet_ntoa.o inet_makeaddr.o inet_lnaof.o \
MOBJ=inet_aton.o inet_addr.o inet_ntoa.o inet_makeaddr.o inet_lnaof.o \
        inet_netof.o
        inet_netof.o
MSRC2=resolv.c
MSRC2=resolv.c
MOBJ2=encodeh.o decodeh.o encoded.o decoded.o lengthd.o encodeq.o \
MOBJ2=encodeh.o decodeh.o encoded.o decoded.o lengthd.o encodeq.o \
        decodeq.o lengthq.o encodea.o decodea.o encodep.o decodep.o \
        decodeq.o lengthq.o encodea.o decodea.o encodep.o decodep.o \
        formquery.o dnslookup.o resolveaddress.o opennameservers.o \
        formquery.o dnslookup.o resolveaddress.o opennameservers.o \
        closenameservers.o resolvename.o gethostbyname.o res_init.o \
        closenameservers.o resolvename.o gethostbyname.o res_init.o \
        res_query.o gethostbyaddr.o read_etc_hosts_r.o get_hosts_byname_r.o \
        res_query.o gethostbyaddr.o read_etc_hosts_r.o get_hosts_byname_r.o \
        get_hosts_byaddr_r.o gethostbyname2.o getnameinfo.o gethostent.o \
        get_hosts_byaddr_r.o gethostbyname2.o getnameinfo.o gethostent.o \
        gethostbyname_r.o gethostbyname2_r.o gethostbyaddr_r.o \
        gethostbyname_r.o gethostbyname2_r.o gethostbyaddr_r.o \
        res_comp.o ns_name.o
        res_comp.o ns_name.o
MSRC3=socketcalls.c
MSRC3=socketcalls.c
MOBJ3= accept.o bind.o connect.o getpeername.o getsockname.o getsockopt.o \
MOBJ3= accept.o bind.o connect.o getpeername.o getsockname.o getsockopt.o \
        listen.o recv.o recvfrom.o recvmsg.o send.o sendmsg.o sendto.o \
        listen.o recv.o recvfrom.o recvmsg.o send.o sendmsg.o sendto.o \
        setsockopt.o shutdown.o socket.o socketpair.o
        setsockopt.o shutdown.o socket.o socketpair.o
CSRC =getservice.c getproto.c hostid.c getnetent.c getnetbynm.c getnetbyad.c \
CSRC =getservice.c getproto.c hostid.c getnetent.c getnetbynm.c getnetbyad.c \
      inet_net.c ntop.c herror.c if_nametoindex.c gai_strerror.c getaddrinfo.c \
      inet_net.c ntop.c herror.c if_nametoindex.c gai_strerror.c getaddrinfo.c \
      in6_addr.c ether_addr.c ntohl.c
      in6_addr.c ether_addr.c ntohl.c
COBJS=$(patsubst %.c,%.o, $(CSRC))
COBJS=$(patsubst %.c,%.o, $(CSRC))
OBJS=$(MOBJ) $(MOBJ2) $(MOBJ3) $(COBJS)
OBJS=$(MOBJ) $(MOBJ2) $(MOBJ3) $(COBJS)
all: $(OBJS) $(LIBC)
all: $(OBJS) $(LIBC)
$(LIBC): ar-target subdirs
$(LIBC): ar-target subdirs
ar-target: $(OBJS)
ar-target: $(OBJS)
        $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
        $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
$(MOBJ): $(MSRC)
$(MOBJ): $(MSRC)
        $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
        $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
        $(STRIPTOOL) -x -R .note -R .comment $*.o
        $(STRIPTOOL) -x -R .note -R .comment $*.o
$(MOBJ2): $(MSRC2)
$(MOBJ2): $(MSRC2)
        $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
        $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
        $(STRIPTOOL) -x -R .note -R .comment $*.o
        $(STRIPTOOL) -x -R .note -R .comment $*.o
$(MOBJ3): $(MSRC3)
$(MOBJ3): $(MSRC3)
        $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
        $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
        $(STRIPTOOL) -x -R .note -R .comment $*.o
        $(STRIPTOOL) -x -R .note -R .comment $*.o
$(COBJS): %.o : %.c
$(COBJS): %.o : %.c
        $(CC) $(CFLAGS) -c $< -o $@
        $(CC) $(CFLAGS) -c $< -o $@
        $(STRIPTOOL) -x -R .note -R .comment $*.o
        $(STRIPTOOL) -x -R .note -R .comment $*.o
clean: subdirs_clean
clean: subdirs_clean
        $(RM) *.[oa] *~ core
        $(RM) *.[oa] *~ core
subdirs: $(patsubst %, _dir_%, $(DIRS))
subdirs: $(patsubst %, _dir_%, $(DIRS))
subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS))
subdirs_clean: $(patsubst %, _dirclean_%, $(ALL_SUBDIRS))
$(patsubst %, _dir_%, $(DIRS)) : dummy
$(patsubst %, _dir_%, $(DIRS)) : dummy
        $(MAKE) -C $(patsubst _dir_%, %, $@)
        $(MAKE) -C $(patsubst _dir_%, %, $@)
$(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy
$(patsubst %, _dirclean_%, $(ALL_SUBDIRS)) : dummy
        $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
        $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
.PHONY: dummy
.PHONY: dummy
 
 

powered by: WebSVN 2.1.0

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