aboutsummaryrefslogtreecommitdiff
path: root/template/make/snip-os-detect.mak
blob: e3cc60cbd081f6f08109e78e84b4af7f2a9b81b2 (plain)
1
2
3
4
5
6
7
8
ifeq ($(OS),Windows_NT)
else
    OS := $(shell uname -s)
    ifeq ($(OS),Linux)
    endif
    ifeq ($(OS),Darwin)
    endif
endif