home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / sbin / lib / m68k / Makefile
Encoding:
Makefile  |  1994-03-11  |  355 b   |  27 lines

  1. #
  2. # Makefile for Linux specific functions
  3. #
  4.  
  5. TOPDIR=../../..
  6.  
  7. include $(TOPDIR)/Makeconfig
  8. include $(TOPDIR)/Makerules
  9.  
  10. DIRS=crt
  11.  
  12. lib clean realclean depend::
  13. ifneq ($(DIRS),)
  14.     @for d in $(DIRS); do \
  15.       ($(MAKE) -C $$d $@); \
  16.     done
  17. else
  18.     @true
  19. endif
  20.  
  21. #
  22. # include a dependency file if one exists
  23. #
  24. ifeq (.depend,$(wildcard .depend))
  25. include .depend
  26. endif
  27.