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

  1. #
  2. # Makefile for som generic math functions.
  3. #
  4.  
  5. override MATH=true
  6.  
  7. override DEBUG=false
  8. override PROFILE=false
  9.  
  10. TOPDIR=..
  11.  
  12. include $(TOPDIR)/Makeconfig
  13. include $(TOPDIR)/Makerules
  14.  
  15. INC_CFLAGS=-I. 
  16.  
  17. DIRS:=
  18.  
  19. SRC1S= __finite.c
  20. SRC2S = infnan.c isinf.c isnan.c rint.c copysign.c \
  21.     finite.c drem.c
  22. SRCS= $(SRC1S) $(SRC2S)
  23. ASMS= $(SRCS:.c=.s)
  24. OBJS= $(SRC1S:.c=.o)
  25. ALIASES= $(SRC2S:.c=.o)
  26.  
  27. include $(TOPDIR)/Maketargets
  28.