home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / compat / Makefile < prev    next >
Encoding:
Makefile  |  1994-10-26  |  637 b   |  32 lines

  1. #
  2. # This is Makefile for some misc functions.
  3. #
  4.  
  5. override SHARED=true
  6. override STATIC=false
  7. override DEBUG=false
  8. override PROFILE=false
  9. JUMP_LIB = libcompat
  10.  
  11. TOPDIR=..
  12.  
  13. include $(TOPDIR)/Makeconfig
  14. include $(TOPDIR)/Makerules
  15.  
  16. SHARED_LIB=$(SHARED_DIR)/libcompat/libcompat.a
  17. .PHONY: $(SHARED_LIB)
  18.  
  19. INC_CFLAGS= -I. -I. -I$(TOPDIR)/misc
  20.  
  21. DIRS=$(TARGET_ARCH) math
  22.  
  23. SRC1S= __old_sel.c __old_glob.c __old_gdtbsz.c __undefined.c \
  24.     __warning.c aliases.c __old_regex.c # __old__validuser.c
  25. SRC2S=__old_libc.c
  26. SRCS= $(SRC1S) $(SRC2S)
  27. ASMS= $(SRC1S:.c=.s) $(SRC2S:.c=.s)
  28. OBJS= $(SRC1S:.c=.o)
  29. ALIASES= $(SRC2S:.c=.o)
  30.  
  31. include $(TOPDIR)/Maketargets
  32.