home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume26 / mcast / part01 / Makefile.tmpl < prev    next >
Makefile  |  1993-04-06  |  435b  |  21 lines

  1. #
  2. # $Header: /u0/casey/src/mcast/RCS/Makefile.tmpl,v 1.1 92/10/16 18:21:14 casey Exp $
  3. #
  4.       SUBDIRS = doc include/netmcast libmcast mcastd man test
  5.  
  6. .DEFAULT:
  7.     @set +x; \
  8.     for i in $(SUBDIRS); do \
  9.         (cd $$i; echo "Doing " $@ " in " $$i " ..."; \
  10.          $(MAKE) $(MFLAGS) DESTDIR="$(DESTDIR)" $@); \
  11.     done
  12.  
  13. all: $(SUBDIRS)
  14.  
  15. $(SUBDIRS): FRC
  16.     @set +x; \
  17.     (cd $@; echo "Making in $@ ..."; \
  18.      $(MAKE) $(MFLAGS) DESTDIR="$(DESTDIR)")
  19.  
  20. FRC:
  21.