Newer
Older
Handbook / make-includes / standard_paths.make
nstanger on 1 Jul 2012 933 bytes - Added XCF to PNG conversion.
  1. ################################################################################
  2. #
  3. # File: $Id$
  4. #
  5. # Specify standard file path list.
  6. #
  7. ################################################################################
  8.  
  9.  
  10. ################################################################################
  11. #
  12. # Required make variables. These should be defined by the calling makefile.
  13. #
  14. # IMGDIR
  15. # The path to the directory that contains images, e.g., "images".
  16. #
  17. IMGDIR?=$(error The required make variable IMGDIR has not been defined. Please set it to the directory in which images are located)
  18.  
  19.  
  20. ################################################################################
  21. #
  22. # Standard paths.
  23. #
  24. vpath %.pdf $(IMGDIR)
  25. vpath %.png $(IMGDIR)
  26. vpath %.tif $(IMGDIR)
  27. vpath %.jpg $(IMGDIR)
  28. vpath %.plo $(IMGDIR)
  29. vpath %.ps $(IMGDIR)
  30. vpath %.eps $(IMGDIR)
  31. vpath %.svg $(IMGDIR)
  32. vpath %.pict $(IMGDIR)
  33. vpath %.xcf $(IMGDIR)
  34. vpath %.R $(IMGDIR)