misc fixes to get uquake to link with the new input code

This commit is contained in:
Bill Currie 2000-02-19 08:55:10 +00:00
parent 1e9f882fee
commit a5c3e6519c
3 changed files with 5 additions and 2 deletions

View file

@ -275,7 +275,8 @@ $(BUILD_DIR)/common_lib.a: $(ALL_COMMON_LIB_OBJS)
ifneq ($(X11QUAKE),)
ALL_X11_SRC = $(CD_AUDIO_SRC) $(SW_REND_SRC) @X11_VID_SRC@ model.c
ALL_X11_SRC = $(CD_AUDIO_SRC) $(SW_REND_SRC) @X11_VID_SRC@ model.c in_x11.c \
context_x11.c
ALL_X11_OBJS = $(patsubst %,$(BUILD_DIR)/%,$(addsuffix .@OBJEXT@,\
$(basename $(ALL_X11_SRC) .c .s))) \
$(BUILD_DIR)/common_lib.a \
@ -445,7 +446,7 @@ endif
ifneq ($(GLQUAKE),)
ALL_GL_SRC = $(CD_AUDIO_SRC) $(GL_REND_SRC) \
gl_vidglx.c dga_check.c
gl_vidglx.c dga_check.c in_x11.c context_x11.c
ALL_GL_OBJS = $(patsubst %,$(BUILD_DIR)/%,$(addsuffix .@OBJEXT@,\
$(basename $(ALL_GL_SRC) .c .s))) \
$(BUILD_DIR)/common_lib.a \

View file

@ -36,6 +36,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <sound.h>
#include <screen.h>
#include <menu.h>
#include <input.h>
#include <plugin.h>
#include <time.h>

View file

@ -38,6 +38,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <lib_replace.h>
#include <menu.h>
#include <view.h>
#include <input.h>
#include <plugin.h>
#include <time.h>