diff options
Diffstat (limited to '')
-rw-r--r-- | src/civetweb/resources/Makefile.in-os | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/civetweb/resources/Makefile.in-os b/src/civetweb/resources/Makefile.in-os new file mode 100644 index 00000000..a7591348 --- /dev/null +++ b/src/civetweb/resources/Makefile.in-os @@ -0,0 +1,23 @@ +# +# 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 + |