ncsa-mosaic/libnet/Makefile.orig
Alan Dipert 29c82be0c2 init
2010-03-08 05:55:21 -05:00

18 lines
253 B
Makefile

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]