- Also copy in a missing utils with a constant when we require it. - Switch to pyproject macros. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pgmagick?expand=0&rev=12
28 lines
506 B
Makefile
28 lines
506 B
Makefile
all: cookbook blob color image geometry montage api
|
|
|
|
PYTHON?=python
|
|
|
|
cookbook:
|
|
@${PYTHON} test_cookbook.py ${TEST_OPTIONS}
|
|
|
|
blob:
|
|
@${PYTHON} test_pgmagick_blob.py ${TEST_OPTIONS}
|
|
|
|
color:
|
|
@${PYTHON} test_pgmagick_color.py ${TEST_OPTIONS}
|
|
|
|
image:
|
|
@${PYTHON} test_pgmagick_image.py ${TEST_OPTIONS}
|
|
|
|
geometry:
|
|
@${PYTHON} test_pgmagick_geometry.py ${TEST_OPTIONS}
|
|
|
|
montage:
|
|
@${PYTHON} test_pgmagick_montage.py ${TEST_OPTIONS}
|
|
|
|
api:
|
|
@${PYTHON} test_pgmagick_api.py ${TEST_OPTIONS}
|
|
|
|
clean:
|
|
rm *.png *.jpg
|