home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / posix / Makefile < prev    next >
Encoding:
Makefile  |  1994-01-16  |  1.0 KB  |  37 lines

  1. #
  2. # Makefile for POSIX functions
  3. #
  4.  
  5. TOPDIR=..
  6.  
  7. include $(TOPDIR)/Makeconfig
  8. include $(TOPDIR)/Makerules
  9.  
  10. # If GETOPT_COMPAT is defined, `+' as well as `--' can introduce a
  11. # long-named option.  Because this is not POSIX.2 compliant, it is
  12. #  being phased out.
  13. # COMPAT_FLAGS = -DGETOPT_COMPAT
  14.  
  15. BASE_CFLAGS:= $(BASE_CFLAGS) $(COMPAT_FLAGS)
  16.  
  17. DIRS:=
  18.  
  19. SRC1S= cfmakeraw.c cfsetget.c clock.c confstr.c ctermid.c cuserid.c \
  20.     execl.c execle.c execlp.c execv.c execvp.c \
  21.     fnmatch.c getcwd.c getenv.c \
  22.     getopt.c getopt1.c glob.c killpg.c mktemp.c \
  23.     putenv.c raise.c readv.c sleep.c system.c tcdrain.c \
  24.     tcflow.c tcflush.c tcgetpgrp.c tcsendbrk.c \
  25.     tcsetattr.c tcsetpgrp.c ttyname.c writev.c
  26. SRC2S= environ.c execve.c fork.c fpathconf.c getegid.c geteuid.c \
  27.     getgid.c getgrps.c getpid.c getppid.c getuid.c pathconf.c \
  28.     setgid.c setsid.c setuid.c sysconf.c \
  29.     tcgetattr.c times.c wait.c wait3.c wait4.c waitpid.c
  30.  
  31. SRCS= $(SRC1S) $(SRC2S)
  32. ASMS= $(SRC1S:.c=.s) $(SRC2S:.c=.s)
  33. OBJS= $(SRC1S:.c=.o)
  34. ALIASES= $(SRC2S:.c=.o)
  35.  
  36. include $(TOPDIR)/Maketargets
  37.