OSDN Git Service

More random fixes and additions.
[uclinux-h8/uClibc.git] / libc / inet / Makefile
1 # Makefile for uCLibc
2 #
3 # Copyright (C) 2000 by Lineo, inc.
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 General Public License for more
13 # details.
14 #
15 # You should have received a copy of the GNU General Public License along with
16 # this program; if not, write to the Free Software Foundation, Inc., 59 Temple
17 # Place, Suite 330, Boston, MA 02111-1307 USA
18 #
19 # Derived in part from the Linux-8086 C library, the GNU C Library, and several
20 # other sundry sources.  Files within this library are copyright by their
21 # respective copyright holders.
22
23 TOPDIR=../
24 include $(TOPDIR)Rules.mak
25 LIBC=$(TOPDIR)libc.a
26
27 DIRS = #rpc
28
29 MSRC=addr.c
30 MOBJ=inet_aton.o inet_addr.o inet_ntoa.o
31
32 MSRC2=resolv.c
33 MOBJ2=encodeh.o decodeh.o encoded.o decoded.o lengthd.o encodeq.o \
34         decodeq.o lengthq.o encodea.o decodea.o encodep.o decodep.o \
35         formquery.o dnslookup.o resolveaddress.o resolvemailbox.o \
36         opennameservers.o closenameservers.o resolvename.o gethostbyname.o\
37         gethostbyaddr.o
38
39 MSRC3=socketcalls.c
40 MOBJ3= accept.o bind.o connect.o getpeername.o getsockname.o getsockopt.o \
41         listen.o recv.o recvfrom.o recvmsg.o send.o sendmsg.o sendto.o \
42         setsockopt.o shutdown.o socket.o socketpair.o 
43
44 CSRC =getservice.c getproto.c hostid.c
45 COBJS=$(patsubst %.c,%.o, $(CSRC))
46
47 OBJS=$(MOBJ) $(MOBJ2) $(MOBJ3) $(COBJS)
48
49
50 all: $(OBJS) $(LIBC)
51
52 $(LIBC): ar-target subdirs
53
54 ar-target: $(OBJS)
55         $(AR) $(ARFLAGS) $(LIBC) $(OBJS)
56
57 $(MOBJ): $(MSRC)
58         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
59         $(STRIPTOOL) -x -R .note -R .comment $*.o
60
61 $(MOBJ2): $(MSRC2)
62         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
63         $(STRIPTOOL) -x -R .note -R .comment $*.o
64
65 $(MOBJ3): $(MSRC3)
66         $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
67         $(STRIPTOOL) -x -R .note -R .comment $*.o
68
69 $(COBJS):
70         $(CC) $(CFLAGS) $< -c $*.c -o $*.o
71         $(STRIPTOOL) -x -R .note -R .comment $*.o
72
73 clean: subdirs_clean
74         rm -f *.[oa] *~ core
75
76 subdirs: $(patsubst %, _dir_%, $(DIRS))
77 subdirs_clean: $(patsubst %, _dirclean_%, $(DIRS))
78
79 $(patsubst %, _dir_%, $(DIRS)) : dummy
80         $(MAKE) -C $(patsubst _dir_%, %, $@)
81
82 $(patsubst %, _dirclean_%, $(DIRS)) : dummy
83         $(MAKE) -C $(patsubst _dirclean_%, %, $@) clean
84
85 .PHONY: dummy
86