Skip to content

Instantly share code, notes, and snippets.

@Piotr1215
Forked from sighingnow/Makefile
Created February 20, 2022 13:13
Show Gist options
  • Save Piotr1215/693147c685d16b1508130a4b082e41e1 to your computer and use it in GitHub Desktop.
Save Piotr1215/693147c685d16b1508130a4b082e41e1 to your computer and use it in GitHub Desktop.
Detect operating system in Makefile.
# Detect operating system in Makefile.
# Author: He Tao
# Date: 2015-05-30
OSFLAG :=
ifeq ($(OS),Windows_NT)
OSFLAG += -D WIN32
ifeq ($(PROCESSOR_ARCHITECTURE),AMD64)
OSFLAG += -D AMD64
endif
ifeq ($(PROCESSOR_ARCHITECTURE),x86)
OSFLAG += -D IA32
endif
else
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
OSFLAG += -D LINUX
endif
ifeq ($(UNAME_S),Darwin)
OSFLAG += -D OSX
endif
UNAME_P := $(shell uname -p)
ifeq ($(UNAME_P),x86_64)
OSFLAG += -D AMD64
endif
ifneq ($(filter %86,$(UNAME_P)),)
OSFLAG += -D IA32
endif
ifneq ($(filter arm%,$(UNAME_P)),)
OSFLAG += -D ARM
endif
endif
all:
@echo $(OSFLAG)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment