diff options
author | Zack Middleton <zturtleman@gmail.com> | 2012-02-06 21:05:57 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-12 20:17:25 +0000 |
commit | 89dbcd9f595d184a81d3991aee7d6394b2b4431f (patch) | |
tree | 2fba708b7a5d8aa40560e95b9ad35002db1508cc /Makefile | |
parent | 99d35cf1347a5bc4f25c749149e811763e59e5ef (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-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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 \ |