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

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