summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorZack Middleton <zturtleman@gmail.com>2012-02-06 21:05:57 +0000
committerTim Angus <tim@ngus.net>2013-01-12 20:17:25 +0000
commit89dbcd9f595d184a81d3991aee7d6394b2b4431f (patch)
tree2fba708b7a5d8aa40560e95b9ad35002db1508cc /Makefile
parent99d35cf1347a5bc4f25c749149e811763e59e5ef (diff)
Unix clients can now enter commands from tty console. Patch by Rambetter with some edits by me. (#4799)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2ea8698e..2e621c90 100644
--- a/Makefile
+++ b/Makefile
@@ -1331,10 +1331,17 @@ Q3OBJ = \
$(B)/client/sdl_input.o \
$(B)/client/sdl_snd.o \
\
- $(B)/client/con_passive.o \
$(B)/client/con_log.o \
$(B)/client/sys_main.o
+ifeq ($(PLATFORM),mingw32)
+ Q3OBJ += \
+ $(B)/client/con_passive.o
+else
+ Q3OBJ += \
+ $(B)/client/con_tty.o
+endif
+
Q3ROBJ = \
$(B)/renderer/tr_animation.o \
$(B)/renderer/tr_backend.o \