mirror of
https://gitlab.com/es-de/emulationstation-de.git
synced 2025-04-02 10:51:45 -04:00
8 lines
176 B
Makefile
8 lines
176 B
Makefile
%.pdf: %.dot
|
|
dot $< -Tpdf -o $@
|
|
|
|
%.png: %.dot
|
|
dot $< -Tpng -o $@
|
|
|
|
DOTFILES = $(basename $(wildcard *.dot))
|
|
all: $(addsuffix .png, $(DOTFILES)) $(addsuffix .pdf, $(DOTFILES))
|