The code below (in Makefile) works fine for linux, but I want to make universal makefile for linux and windows.
migrations:
@read -p "Enter migration message: " message; \
alembic revision --autogenerate --message "$$message"
How can I do it?