home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / sysdeps / i386 / Makefile < prev    next >
Encoding:
Makefile  |  1994-12-01  |  574 b   |  26 lines

  1. #
  2. # Makefile for i386 specific functions.
  3. #
  4.  
  5. TOPDIR=../..
  6.  
  7. include $(TOPDIR)/Makeconfig
  8. include $(TOPDIR)/Makerules
  9.  
  10. INC_CFLAGS=-I$(TOPDIR)/string -I$(TOPDIR) -I. 
  11.  
  12. DIRS:= setjmp
  13.  
  14. SRC1S= hton.c modf.c bzero.c ffs.c memchr.c memcmp.c memset.c \
  15.     strcat.c strchr.c strcmp.c strcspn.c strlen.c strncmp.c \
  16.     strpbrk.c strrchr.c strspn.c __stpncpy.c stpcpy.c strstr.c
  17. SRC2S= ntoh.c div.c
  18. SRC3S= frexp.S
  19.  
  20. SRCS= $(SRC1S) $(SRC2S) $(SRC3S)
  21. ASMS= $(SRC1S:.c=.s) $(SRC2S:.c=.s) $(SRC3S:.S=.s)
  22. OBJS= $(SRC1S:.c=.o) $(SRC3S:.S=.o)
  23. ALIASES= $(SRC2S:.c=.o)
  24.  
  25. include $(TOPDIR)/Maketargets
  26.