You've already forked website-favicon-generator
Fix makefile OS compatibility
This commit is contained in:
7
Makefile
7
Makefile
@ -14,7 +14,12 @@
|
|||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
# 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
|
SOURCE ?= source.png
|
||||||
|
|
||||||
# Files & forlders
|
# Files & forlders
|
||||||
|
Reference in New Issue
Block a user