Skip to content

Instantly share code, notes, and snippets.

View phoebe-leong's full-sized avatar
😝
Just being myself

pwompus phoebe-leong

😝
Just being myself
View GitHub Profile
@sighingnow
sighingnow / Makefile
Last active June 28, 2024 16:20
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