# Author:	Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
#		Copyright 1993 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 ether.o ax25.o
AFOBJS	= af.o unix.o inet.o ax25.o
VARIA	= getsock.o


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


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

clean:
		rm -f *.o *.a

