# Peony Game Engine # Copyright (C) 2020 Vlad-Stefan Harbuz # All rights reserved. ifeq ($(OS),Windows_NT) include make_windows.mk else UNAME_S := $(shell uname -s) ifeq ($(UNAME_S),Darwin) include make_macos.mk else include make_linux.mk endif endif