home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lifeos2.zip / LIFE-1.02 / DEMO / SOUNDS / MAKEFILE < prev    next >
Text File  |  1996-06-04  |  278b  |  10 lines

  1. install:
  2.     test -d $(libdir)/Demo/Sounds || $(MKDIRHIER) $(libdir)/Demo/Sounds
  3.     for f in *.au ; do \
  4.       $(INSTALL) -m 744 $$f $(libdir)/Demo/Sounds; \
  5.     done
  6.  
  7. dist:
  8.     test -d $(distdir)/Demo/Sounds || $(MKDIRHIER) $(distdir)/Demo/Sounds
  9.     $(CP) *.au Makefile $(distdir)/Demo/Sounds
  10.