blob: 7ec3bdb600647cd9381df2449d179959e0feb8d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
PYTHON_SOURCE=$(shell echo */*.py.xdotool)
TARGETS=${PYTHON_SOURCE:.py.xdotool=1.png}
TOOLS=tools/compile_pngs.sh tools/screenshots.sh
.PHONY: all
all: ${TARGETS}
${TARGETS}: %1.png: %.py %.py.xdotool ${TOOLS}
echo zzz $<
tools/compile_pngs.sh $<
apt-get-dependencies:
sudo apt-get install xvfb rxvt-unicode-256color xdotool
|