Files
renderdoc/Makefile
T
baldurk 35cc323ee4 Add skeleton qrenderdoc (just a qt template) & include in linux build
* Building qrenderdoc on windows will be supported just because that's
  likely where I will be developing it mostly, but for the foreseeable
  future it won't be built by default. If it ever gets good enough to
  replace the .NET UI, then we can look at it again.
2015-07-10 16:38:14 +02:00

14 lines
346 B
Makefile

.PHONY: all
all:
mkdir -p bin/
cd renderdoc && make librenderdoc.so
cd renderdoccmd && make bin/renderdoccmd
cd qrenderdoc && qmake "CONFIG+=debug" && make
cp renderdoc/librenderdoc.so renderdoccmd/bin/renderdoccmd bin/
.PHONY: clean
clean:
cd renderdoc && make clean
cd renderdoccmd && make clean
cd qrenderdoc && rm -rf .obj Makefile*