From 073554e71ae282611c7b220c5d1fd73584ed75b9 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Sat, 24 Dec 2016 15:59:27 +0100 Subject: Add the 'FAST' option to Makefile for shitty debug builds. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8cad288..b6753c2 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,11 @@ Q3MAP_LIGHT += -light -bounce 1 -dirty -bouncegrid -dirtscale 0.3 \ -dirtdepth 32 -fastbounce -patchshadows -samples 8 \ -samplesize 8 -cpma +FAST ?= 0 +ifeq ($(FAST), 1) + Q3MAP_LIGHT = -light -fast +endif + MAPCAT ?= mapcat MAPCAT_FLAGS += -- cgit