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

  1. #
  2. # This is Makefile of io for Linux
  3. #
  4.  
  5. TOPDIR=..
  6.  
  7. include $(TOPDIR)/Makeconfig
  8. include $(TOPDIR)/Makerules
  9.  
  10. INC_CFLAGS= -I. -I$(TOPDIR)
  11.  
  12. DIRS:=
  13. SRC1S= ftw.c getdirname.c getwd.c lockf.c
  14. SRC2S= access.c chdir.c chmod.c chown.c close.c dup.c dup2.c \
  15.     fchdir.c fchmod.c fchown.c fcntl.c flock.c fstat.c isatty.c link.c \
  16.     lseek.c lstat.c mkdir.c open.c pipe.c read.c readlink.c \
  17.     rmdir.c stat.c symlink.c umask.c unlink.c write.c
  18. SRCS= $(SRC1S) $(SRC2S)
  19. ASMS= $(SRC1S:.c=.s) $(SRC2S:.c=.s)
  20. OBJS= $(SRC1S:.c=.o)
  21. ALIASES= $(SRC2S:.c=.o)
  22.  
  23. include $(TOPDIR)/Maketargets
  24.