osquery-1/Makefile

42 lines
932 B
Makefile
Raw Normal View History

PLATFORM := $(shell uname -s)
2014-11-06 11:15:26 +00:00
MAKE = make
ifeq ($(PLATFORM),Darwin)
BUILD_DIR=darwin
2014-11-06 08:16:28 +00:00
else ifeq ($(PLATFORM),FreeBSD)
BUILD_DIR=freebsd
2014-11-06 11:15:26 +00:00
MAKE = gmake
else
DISTRO := $(shell if [ -f "/etc/redhat-release" ]; then echo "Centos"; fi)
ifeq ($(DISTRO),Centos)
BUILD_DIR=centos
else
BUILD_DIR=ubuntu
endif
endif
2014-11-09 00:55:19 +00:00
all: .setup
cd build/$(BUILD_DIR) && cmake -DCMAKE_BUILD_TYPE= ../.. && \
$(MAKE) --no-print-directory $(MAKEFLAGS)
2014-11-09 00:55:19 +00:00
debug: .setup
cd build/$(BUILD_DIR) && cmake -DCMAKE_BUILD_TYPE=Debug ../../ && \
$(MAKE) --no-print-directory $(MAKEFLAGS)
2014-11-09 00:55:19 +00:00
deps: .setup
./tools/provision.sh build build/$(BUILD_DIR)
distclean:
rm -rf .sources build/$(BUILD_DIR) doxygen/html doxygen/latex
2014-11-09 00:55:19 +00:00
ifeq ($(PLATFORM),Linux)
rm -rf build/linux
endif
2014-11-09 00:55:19 +00:00
.setup:
mkdir -p build/$(BUILD_DIR)
2014-11-09 00:55:19 +00:00
ifeq ($(PLATFORM),Linux)
ln -snf $(BUILD_DIR) build/linux
endif
%::
cd build/$(BUILD_DIR) && cmake ../.. && $(MAKE) --no-print-directory $@