home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / N / TCPIP / NET-TOOL.1 / NET-TOOL / net-tools / lib / Makefile < prev    next >
Encoding:
Makefile  |  1995-01-11  |  947 b   |  38 lines

  1. #
  2. # NET-BASE    A collection of programs that form the base set of the
  3. #        NET-2 Networking Distribution for the LINUX operating
  4. #        system.  This Makefile creates the Support Library.
  5. #
  6. # Version:    @(#)Makefile.l    1.20    12/12/93
  7. #
  8. # Author:    Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
  9. #        Copyright 1993 MicroWalt Corporation
  10. #
  11. #        This program is free software; you can redistribute it
  12. #        and/or  modify it under  the terms of  the GNU General
  13. #        Public  License as  published  by  the  Free  Software
  14. #        Foundation;  either  version 2 of the License, or  (at
  15. #        your option) any later version.
  16. #
  17.  
  18. HWOBJS    = hw.o loopback.o slip.o ether.o ax25.o ppp.o arcnet.o
  19. AFOBJS    = af.o unix.o inet.o ax25.o
  20. VARIA    = getsock.o getargs.o
  21.  
  22.  
  23. OBJS    = $(VARIA) $(AFOBJS) $(HWOBJS)
  24.  
  25.  
  26. libsupport.a:    Makefile ../config.h $(OBJS)
  27.         @rm -f libsupport.a
  28.         @ar rcs libsupport.a $(OBJS)
  29.         @ranlib libsupport.a
  30.  
  31. clean:
  32.         rm -f *.o
  33.  
  34. clobber:    clean
  35.         rm -f *.a
  36.  
  37. # End of Makefile.
  38.