Created
January 20, 2020 01:55
-
-
Save clayrisser/a1dec862bba4b6032d9cb1a3bfe16edd to your computer and use it in GitHub Desktop.
Universal Makefiles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PLATFORM := $(shell node -e "process.stdout.write(process.platform)") | |
ifeq ($(PLATFORM), win32) | |
SHELL = cmd | |
endif | |
.EXPORT_ALL_VARIABLES: | |
all: | |
@echo platform: $(PLATFORM) | |
@echo shell: $(SHELL) | |
@echo node: $(shell node --version) | |
@echo npm: $(shell npm --version) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment