This commit is contained in:
Alan Dipert
2010-03-08 05:55:21 -05:00
commit 29c82be0c2
528 changed files with 159411 additions and 0 deletions

17
libnet/Makefile Normal file
View File

@@ -0,0 +1,17 @@
LIBTARGET = libnet.a
all: $(LIBTARGET)
CFILES = net.c netdata.c list.c mesg.c
OBJS = $(CFILES:.c=.o)
$(LIBTARGET): $(OBJS)
-rm -f $(LIBTARGET)
ar rv $(LIBTARGET) $(OBJS)
$(RANLIB) $(LIBTARGET)
clean:
-rm $(LIBTARGET) *.o
tags:
etags -t *.[ch]