Fix makefile OS compatibility
This commit is contained in:
parent
8649a36fa4
commit
f248bb1088
7
Makefile
7
Makefile
@ -14,7 +14,12 @@
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
CC = magick convert
|
||||
ifeq ($(OS),Windows_NT)
|
||||
CC = magick
|
||||
else
|
||||
CC = convert
|
||||
endif
|
||||
|
||||
SOURCE ?= source.png
|
||||
|
||||
# Files & forlders
|
||||
|
Loading…
x
Reference in New Issue
Block a user