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

  1. #
  2. # This is Makefile of stdlib functions for Linux.
  3. #
  4.  
  5. TOPDIR=..
  6.  
  7. include $(TOPDIR)/Makeconfig
  8. include $(TOPDIR)/Makerules
  9.  
  10. INC_CFLAGS=-I.
  11.  
  12. DIRS:=
  13. SRC1S= __random.c _quicksort.c abort.c atexit.c atof.c \
  14.     atoi.c atol.c bsearch.c exit.c labs.c ldiv.c \
  15.     mblen.c mbstowcs.c mbtowc.c on_exit.c qsort.c rand.c \
  16.     strtol.c strtoul.c wcstombs.c wctomb.c
  17. SRC2S= abs.c random.c srand.c strtod.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.