mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
24 lines
486 B
Makefile
24 lines
486 B
Makefile
#
|
|
# Copyright (c) 2013 No Face Press, LLC
|
|
# License http://opensource.org/licenses/mit-license.php MIT License
|
|
#
|
|
|
|
# Override this using TARGET_OS=LINUX on the command line
|
|
ifeq ($(TARGET_OS),)
|
|
ifeq ($(OS),Windows_NT)
|
|
TARGET_OS = WIN32
|
|
else
|
|
UNAME_S := $(shell uname -s)
|
|
ifeq ($(UNAME_S),Linux)
|
|
TARGET_OS = LINUX
|
|
else
|
|
ifeq ($(UNAME_S),Darwin)
|
|
TARGET_OS = OSX
|
|
else
|
|
TARGET_OS = BSD
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|