Files
renderdoc/Makefile
T
baldurk 289289d2a1 Simplify root Makefile to just invoke cmake for everything
* It was building qrenderdoc separately for no good reason that I can
  tell.
2016-09-14 16:56:45 +02:00

15 lines
263 B
Makefile

SRC_DIR := $(shell pwd)
DST_DIR := $(SRC_DIR)/build
CMAKE_PARAMS :=
.PHONY: all clean
all: renderdoc
@ln -sf "$(DST_DIR)/bin"
@mkdir -p "$(DST_DIR)" && cd "$(DST_DIR)" && \
cmake $(CMAKE_PARAMS) "$(SRC_DIR)" && \
$(MAKE)
clean:
@rm -rf "$(DST_DIR)" bin