home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 January / dppcpro0199a.iso / Editor / unix.txt next >
Encoding:
Text File  |  1998-10-28  |  568 b   |  46 lines

  1. Listing one
  2.  
  3.  
  4. page.html: page.tmp header.html footer.html
  5.     cat header.html page.tmp footer.html >page.html
  6.  
  7. page.tmp: page.txt
  8.     htmliser <page.txt >page.tmp
  9.  
  10.  
  11. Listing two
  12.  
  13.  
  14. TARGETS=page.html
  15.  
  16. %.html: header.html %.tmp footer.html
  17.         cat header.html $*.tmp footer.html >$@
  18.  
  19. %.tmp:  %.txt
  20.         htmliser <$? >$@
  21.  
  22. all: $(TARGETS)
  23.  
  24. clean:
  25.     rm -f $(TARGETS)
  26.     rm -f *.tmp
  27.  
  28.  
  29. Listing three
  30.  
  31.  
  32. page2.txt: FORCE
  33.     dbq >$@
  34.  
  35. FORCE:
  36.  
  37.  
  38. Listing four
  39.  
  40.  
  41. DELIVERTO=/opt/httpdocs/pages/
  42.  
  43. deliver: $(TARGETS)
  44.     cp $(TARGETS) $(DELIVERTO)
  45.  
  46.