home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / jump / Makefile next >
Encoding:
Makefile  |  1994-09-19  |  516 b   |  41 lines

  1. #
  2.  
  3. TOPDIR=..
  4.  
  5. include $(TOPDIR)/Makeconfig
  6.  
  7. CLEAN_DIRS=libc libc.lite libm libc-nys libcurses libdb
  8.  
  9. ifeq ($(MATH),true)
  10.  
  11. DIRS=libm
  12.  
  13. else
  14.  
  15. ifeq ($(NYS),true)
  16. NYS_DIR_SUFFIX=-nys
  17. endif
  18.  
  19. ifeq ($(LITE),true)
  20. DIRS=libc.lite
  21. else
  22. DIRS=libc$(NYS_DIR_SUFFIX) libm libcurses libdb
  23. endif
  24.  
  25. endif
  26.  
  27. all lib install:
  28.     @for d in $(DIRS); do \
  29.       echo makeing $@ in $$d; \
  30.       ($(MAKE) -C $$d $@); \
  31.     done
  32.  
  33. realclean clean:
  34.     @for d in $(CLEAN_DIRS); do \
  35.       echo makeing $@ in $$d; \
  36.       ($(MAKE) -C $$d $@); \
  37.     done
  38.  
  39. depend:
  40.     @true
  41.