home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / inet / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-28  |  863 b   |  35 lines

  1. #
  2. # This is Makefile of inet lib for Linux
  3. #
  4.  
  5. TOPDIR=..
  6.  
  7. include $(TOPDIR)/Makeconfig
  8. include $(TOPDIR)/Makerules
  9.  
  10. ifeq ($(YP),true)
  11. VSCFLAGS=-DNIS
  12. endif
  13.  
  14. INC_CFLAGS= -I. -I$(TOPDIR)
  15. BASE_CFLAGS := $(BASE_CFLAGS) $(VSCFLAGS) -DUSE_OPTIONS_H=1 
  16.  
  17. DIRS:=
  18. ifeq ($(NYS),)
  19. SRCS = gethstnmad.c getnetbyad.c getnetbynm.c getnetent.c \
  20.     getproto.c getprtent.c getprtname.c getservent.c \
  21.     getsrvbynm.c getsrvbypt.c herror.c inet_addr.c \
  22.     inet_lnaof.c inet_mkadr.c inet_net.c inet_netof.c \
  23.     inet_ntoa.c rcmd.c res_comp.c res_debug.c res_init.c \
  24.     res_mkqry.c res_query.c res_send.c rexec.c ruserpass.c \
  25.     sethostent.c bindresvport.c nsap_addr.c
  26. else
  27. SRCS= herror.c rexec.c rcmd.c ruserpass.c bindresvport.c \
  28.     inet_lnaof.c inet_mkadr.c inet_net.c inet_netof.c inet_ntoa.c inet_addr.c
  29. endif
  30. ASMS= $(SRCS:.c=.s) 
  31. OBJS= $(SRCS:.c=.o)
  32. ALIASES=
  33.  
  34. include $(TOPDIR)/Maketargets
  35.