summaryrefslogtreecommitdiff
path: root/libc/inet/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-02-02 11:00:37 +0000
committerEric Andersen <andersen@codepoet.org>2002-02-02 11:00:37 +0000
commit34436c09619d6b211672301cc68b125bb8548a09 (patch)
tree7314b26dff44f78ff88adbf35882c0bd34fe7fad /libc/inet/Makefile
parenta1db18db0bacff792d1d272f8ae2c9f96a154087 (diff)
Grr. I should learn to compile stuff before committing
Diffstat (limited to 'libc/inet/Makefile')
-rw-r--r--libc/inet/Makefile11
1 files changed, 2 insertions, 9 deletions
diff --git a/libc/inet/Makefile b/libc/inet/Makefile
index 8ca400649..54ef00068 100644
--- a/libc/inet/Makefile
+++ b/libc/inet/Makefile
@@ -49,15 +49,12 @@ 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 \
setsockopt.o shutdown.o socket.o socketpair.o
-MSRC4=herror.c
-MOBJ4=herror.o hstrerror.o
-
CSRC =getservice.c getproto.c hostid.c getnetent.c getnetbynm.c getnetbyad.c \
- inet_net.c ntop.c
+ inet_net.c ntop.c herror.c
COBJS=$(patsubst %.c,%.o, $(CSRC))
-OBJS=$(MOBJ) $(MOBJ2) $(MOBJ3) $(MOBJ4) $(COBJS)
+OBJS=$(MOBJ) $(MOBJ2) $(MOBJ3) $(COBJS)
all: $(OBJS) $(LIBC)
@@ -79,10 +76,6 @@ $(MOBJ3): $(MSRC3)
$(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
$(STRIPTOOL) -x -R .note -R .comment $*.o
-$(MOBJ4): $(MSRC4)
- $(CC) $(CFLAGS) -DL_$* $< -c -o $*.o
- $(STRIPTOOL) -x -R .note -R .comment $*.o
-
$(COBJS): %.o : %.c
$(CC) $(CFLAGS) -c $< -o $@
$(STRIPTOOL) -x -R .note -R .comment $*.o