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

  1. #
  2. # This is Makefile for some misc functions.
  3. #
  4.  
  5. TOPDIR=..
  6.  
  7. include $(TOPDIR)/Makeconfig
  8. include $(TOPDIR)/Makerules
  9.  
  10. INC_CFLAGS=-I.
  11.  
  12. DIRS:=
  13.  
  14. SRC1S= drand48.c getusersh.c insremque.c \
  15.     syslog.c usleep.c obstack.c ftok.c __getline.c hostid.c \
  16.     lfind.c lsearch.c tsearch.c hsearch.c init-misc.c progname.c \
  17.     basename.c
  18. # ldexp.c
  19. SRC2S = brk.c getdtsz.c gethstnm.c getpgsz.c getrusage.c ioctl.c \
  20.     mknod.c sbrk.c select.c setregid.c setreuid.c \
  21.     utimes.c stdiocompat.c dtoa.c
  22. SRC3S= __environ.S errno.S
  23. SRCS= $(SRC1S) $(SRC2S) $(SRC3S)
  24. ASMS= $(SRC1S:.c=.s) $(SRC2S:.c=.s) $(SRC3S:.S=.s)
  25. OBJS= $(SRC1S:.c=.o) $(SRC3S:.S=.o)
  26. ALIASES= $(SRC2S:.c=.o)
  27.  
  28. include $(TOPDIR)/Maketargets
  29.