Remove root Makefile that wraps cmake

* linux compilation must now happen with cmake, which can be done in a
  couple of one-liners.
This commit is contained in:
baldurk
2016-09-27 13:10:24 +02:00
parent cd06d4e840
commit 134f75bd27
-13
View File
@@ -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