#
# NET-BASE	A collection of programs that form the base set of the
#		NET-2 Networking Distribution for the LINUX operating
#		system.  This Makefile creates the Support Library.
#
# Version:	@(#)Makefile.lib	1.50	05/10/94
#
# Author:	Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
#		Copyright 1993,1994 MicroWalt Corporation
#
#		This program is free software; you can redistribute it
#		and/or  modify it under  the terms of  the GNU General
#		Public  License as  published  by  the  Free  Software
#		Foundation;  either  version 2 of the License, or  (at
#		your option) any later version.
#

HWOBJS	= hw.o loopback.o slip.o ppp.o ether.o ax25.o
AFOBJS	= af.o unix.o inet.o ax25.o
VARIA	= getargs.o getsock.o getiflist.o


OBJS	= $(VARIA) $(AFOBJS) $(HWOBJS)


libnet.a:	Makefile ../config.h $(OBJS)
		@rm -f libnet.a
		@ar rcs libnet.a $(OBJS)
		@ranlib libnet.a

clean:
		rm -f *.o

clobber:	clean
		rm -f *.a

# End of Makefile.
