mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-07 00:48:56 +00:00
9 lines
139 B
Makefile
9 lines
139 B
Makefile
# System platform
|
|
|
|
# determine if windows
|
|
WIN32 := 0
|
|
UNAME := $(shell uname -s)
|
|
ifneq (,$(findstring MINGW32_NT,$(UNAME)))
|
|
WIN32 = 1
|
|
endif
|