Update README.md

This commit is contained in:
Mr. Stuzer 2021-10-17 19:41:34 +03:00 committed by GitHub
parent ec7db4a23c
commit b922a2d4a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -11,16 +11,16 @@ By default, makefile uses `convert` file of ImageMagick software, but you can ch
make CC=<executable name> make CC=<executable name>
``` ```
or by changing the following line in a makefile or by changing the following line in a makefile
``` ```make
CC = magick CC = convert
``` ```
Also, the default image filename make is looking for is `source.png`, and you can change that either passing the new filename as a parameter Also, the default image filename make is looking for is `source.png`, and you can change that either passing the new filename as a parameter
``` ```bash
make SOURCE=<image filename> make SOURCE=<image filename>
``` ```
or by changing the following line or by changing the following line
``` ```make
SOURCE ?= <image filename> SOURCE ?= <image filename>
``` ```