Skip to content

Instantly share code, notes, and snippets.

@jennings
Created May 14, 2021 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jennings/89ea13dcefed803831b617a968e48016 to your computer and use it in GitHub Desktop.
Save jennings/89ea13dcefed803831b617a968e48016 to your computer and use it in GitHub Desktop.
Makefile syntax to run different commands on Windows. Works with GNU Make, not NMake
target:
ifeq ($(OS),Windows_NT)
powershell -NoProfile -Command "Get-Date"
else
date
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment