From 134f75bd278ce00f7141b7524c6531309f6cab7b Mon Sep 17 00:00:00 2001 From: baldurk Date: Tue, 27 Sep 2016 13:10:24 +0200 Subject: [PATCH] Remove root Makefile that wraps cmake * linux compilation must now happen with cmake, which can be done in a couple of one-liners. --- Makefile | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 7a6a2f5aa..000000000 --- a/Makefile +++ /dev/null @@ -1,13 +0,0 @@ -SRC_DIR := $(shell pwd) -DST_DIR := $(SRC_DIR)/build -CMAKE_PARAMS := - -.PHONY: all clean - -all: renderdoc - @mkdir -p "$(DST_DIR)" && cd "$(DST_DIR)" && \ - cmake $(CMAKE_PARAMS) "$(SRC_DIR)" && \ - $(MAKE) - -clean: - @rm -rf "$(DST_DIR)" bin