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 / Makefile
Encoding:
Makefile  |  1994-03-11  |  306 b   |  22 lines

  1. #
  2. # Makefile for Linux specific functions
  3. #
  4.  
  5. TOPDIR=..
  6.  
  7. include $(TOPDIR)/Makeconfig
  8. include $(TOPDIR)/Makerules
  9.  
  10. DIRS=$(TARGET_OS)
  11.  
  12. ifneq ($(MATH),true)
  13. DIRS := $(DIRS) $(TARGET_ARCH)
  14. endif
  15.  
  16. lib depend realclean clean:
  17.     @for i in $(DIRS); \
  18.     do \
  19.         echo making $@ in $$i; \
  20.         ($(MAKE) -C $$i $@); \
  21.     done
  22.