home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / SoundAndMusic / cmix / Makefile next >
Makefile  |  1991-12-17  |  409b  |  18 lines

  1. CLEAN = cmd fancier.instruments filters head lpc model.instruments tape.backup rooms
  2. DIRS = Minc lib sys objc cmd fancier.instruments filters head lpc model.instruments tape.backup rooms
  3. all::
  4.     for DIR in $(DIRS);\
  5.         do \
  6.         (cd $$DIR; echo "making all in $$DIR..."; \
  7.             $(MAKE) all); \
  8.         done
  9.  
  10. clean::
  11.     for DIR in $(CLEAN);\
  12.         do \
  13.         (cd $$DIR; echo "making all in $$DIR..."; \
  14.             $(MAKE) clean); \
  15.         done
  16.  
  17.  
  18.