home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / LIBC / LIBC-4.6 / LIBC-4 / libc-linux / sysdeps / linux / m68k / math / Makefile < prev    next >
Encoding:
Makefile  |  1994-11-19  |  737 b   |  35 lines

  1. #
  2. # This is Makefile of the math lib for Linux for the m68k
  3. #
  4.  
  5. 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. MATHFLAGS=-mieee-fp
  17.  
  18. BASE_CFLAGS := $(BASE_CFLAGS) $(MATHFLAGS)
  19.  
  20. SRC1S= __copysign.c __infnan.c __isinf.c __isnan.c __rint.c \
  21.     acos.c acosh.c asin.c atanh.c ceil.c erf.c floor.c frexp.c \
  22.     j0.c j1.c jn.c lgamma.c log.c log10.c log1p.c pow.c sqrt.c \
  23.     __drem.c asinh.c atan.c atan2.c cos.c cosh.c exp.c \
  24.     expm1.c fabs.c fmod.c hypot.c sin.c sinh.c tan.c tanh.c \
  25.     cbrt.c
  26. SRC2S=
  27.  
  28. DIRS:=
  29. SRCS=$(SRC1S) $(SRC2S)
  30. ASMS= $(SRC1S:.c=.s) $(SRC2S:.S=.s)
  31. OBJS= $(SRC1S:.c=.o) $(SRC2S:.S=.o)
  32. ALIASES:=
  33.  
  34. include $(TOPDIR)/Maketargets
  35.