Home | History | Annotate | Line # | Download | only in libhack
Makefile.inc revision 1.6
      1  1.6  wrstuden # $NetBSD: Makefile.inc,v 1.6 1999/05/06 18:48:23 wrstuden Exp $
      2  1.1       gwr # Include this fragment to build libhack.o
      3  1.1       gwr # It is .o and not .a to make sure these are the
      4  1.1       gwr # objects you get (and not the ones in libc.a)
      5  1.1       gwr 
      6  1.5  sommerfe HACKOBJS= getcap.o getgrent.o gethost.o getnet.o getnetgr.o getpwent.o \
      7  1.3       jtc 	setlocale.o yplib.o
      8  1.1       gwr 
      9  1.1       gwr libhack.o : $(HACKOBJS)
     10  1.1       gwr 	$(LD) -r -o $@ $(HACKOBJS)
     11  1.1       gwr 
     12  1.5  sommerfe getcap.o : ${HACKSRC}/getcap.c
     13  1.4       gwr 
     14  1.4       gwr getgrent.o : ${HACKSRC}/getgrent.c
     15  1.4       gwr 
     16  1.1       gwr gethost.o : ${HACKSRC}/gethost.c
     17  1.1       gwr 
     18  1.4       gwr getnet.o : ${HACKSRC}/getnet.c
     19  1.1       gwr 
     20  1.1       gwr getnetgr.o : ${HACKSRC}/getnetgr.c
     21  1.4       gwr 
     22  1.4       gwr getpwent.o : ${HACKSRC}/getpwent.c
     23  1.3       jtc 
     24  1.3       jtc setlocale.o : ${HACKSRC}/setlocale.c
     25  1.2       gwr 
     26  1.2       gwr yplib.o : ${HACKSRC}/yplib.c
     27  1.2       gwr 
     28