merchant-frontend-examples

ZZZ: Inactive/Deprecated
Log | Files | Refs

Makefile (419B)


      1 # This Makefile is in the public domain
      2 
      3 .PHONY: graphics
      4 
      5 SUBDIRS := php/doc python/doc
      6 
      7 all: $(SUBDIRS)
      8 
      9 $(SUBDIRS): graphics
     10 	@cp -t $@ common/graphics/arch.png
     11 	@$(MAKE) -C $@
     12 
     13 graphics:
     14 	@cd common/graphics; dot -Tpdf arch.dot > arch.pdf
     15 	@cd common/graphics; dot -Tpdf arch_nobo.dot > arch_nobo.pdf
     16 	@cd common/graphics; dot -Tjpg arch.dot > arch.jpg
     17 	@cd common/graphics; dot -Tjpg arch_nobo.dot > arch_nobo.jpg