]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb/resources/Makefile.in-os
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / third_party / prometheus-cpp / 3rdparty / civetweb / resources / Makefile.in-os
1 #
2 # Copyright (c) 2013 No Face Press, LLC
3 # License http://opensource.org/licenses/mit-license.php MIT License
4 #
5
6 # Override this using TARGET_OS=LINUX on the command line
7 ifeq ($(TARGET_OS),)
8 ifeq ($(OS),Windows_NT)
9 TARGET_OS = WIN32
10 else
11 UNAME_S := $(shell uname -s)
12 ifeq ($(UNAME_S),Linux)
13 TARGET_OS = LINUX
14 else
15 ifeq ($(UNAME_S),Darwin)
16 TARGET_OS = OSX
17 else
18 TARGET_OS = BSD
19 endif
20 endif
21 endif
22 endif
23