mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Löse qgl/ und vid/ auf
This commit is contained in:
parent
5af05f7d81
commit
0e7a9957e9
7 changed files with 15 additions and 15 deletions
18
Makefile
18
Makefile
|
@ -193,6 +193,7 @@ CLIENT_OBJS = \
|
|||
build/client/input/keyboard.o \
|
||||
build/client/menu/menu.o \
|
||||
build/client/menu/qmenu.o \
|
||||
build/client/menu/videomenu.o \
|
||||
build/client/sound/snd_dma.o \
|
||||
build/client/sound/snd_mem.o \
|
||||
build/client/sound/snd_mix.o \
|
||||
|
@ -256,8 +257,7 @@ POSIX_OBJS = \
|
|||
build/unix/hunk.o \
|
||||
build/unix/misc.o \
|
||||
build/unix/system.o \
|
||||
build/unix/vid/menu.o \
|
||||
build/unix/vid/refresh.o
|
||||
build/unix/vid.o
|
||||
|
||||
# ----------
|
||||
|
||||
|
@ -345,8 +345,8 @@ OPENGL_POSIX_OBJS = \
|
|||
build/ref_gl_unix/glob.o \
|
||||
build/ref_gl_unix/hunk.o \
|
||||
build/ref_gl_unix/misc.o \
|
||||
build/ref_gl_unix/qgl.o \
|
||||
build/ref_gl_unix/refresh.o
|
||||
build/ref_gl_unix/refresh.o \
|
||||
build/ref_gl_unix/qgl.o
|
||||
|
||||
# ----------
|
||||
|
||||
|
@ -492,6 +492,9 @@ build/client/menu/menu.o : src/client/menu/menu.c
|
|||
build/client/menu/qmenu.o : src/client/menu/qmenu.c
|
||||
$(CC) $(CFLAGS_CLIENT) -o $@ -c $<
|
||||
|
||||
build/client/menu/videomenu.o : src/client/menu/videomenu.c
|
||||
$(CC) $(CFLAGS_CLIENT) -o $@ -c $<
|
||||
|
||||
build/client/sound/snd_dma.o : src/client/sound/snd_dma.c
|
||||
$(CC) $(CFLAGS_CLIENT) -o $@ -c $<
|
||||
|
||||
|
@ -633,10 +636,7 @@ build/unix/system.o : src/unix/system.c
|
|||
build/unix/glob.o : src/unix/glob.c
|
||||
$(CC) $(CFLAGS_CLIENT) -o $@ -c $<
|
||||
|
||||
build/unix/vid/menu.o : src/unix/vid/menu.c
|
||||
$(CC) $(CFLAGS_CLIENT) -o $@ -c $<
|
||||
|
||||
build/unix/vid/refresh.o : src/unix/vid/refresh.c
|
||||
build/unix/vid.o : src/unix/vid.c
|
||||
$(CC) $(CFLAGS_CLIENT) -o $@ -c $<
|
||||
|
||||
# ----------
|
||||
|
@ -810,7 +810,7 @@ build/ref_gl_unix/hunk.o: src/unix/hunk.c
|
|||
build/ref_gl_unix/misc.o: src/unix/misc.c
|
||||
$(CC) $(CFLAGS_OPENGL) -o $@ -c $<
|
||||
|
||||
build/ref_gl_unix/qgl.o: src/unix/qgl/qgl.c
|
||||
build/ref_gl_unix/qgl.o: src/unix/qgl.c
|
||||
$(CC) $(CFLAGS_OPENGL) -o $@ -c $<
|
||||
|
||||
build/ref_gl_unix/refresh.o: src/sdl/refresh.c
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
#include "SDL.h"
|
||||
#include <GL/gl.h>
|
||||
#include "../refresh/header/local.h"
|
||||
#include "../unix/qgl/header/glwindow.h"
|
||||
#include "../unix/header/glwindow.h"
|
||||
|
||||
#include "../client/input/header/keyboard.h"
|
||||
#include "../unix/header/unix.h"
|
||||
|
@ -87,7 +87,7 @@ int GLimp_Init( void *hInstance, void *wndProc )
|
|||
|
||||
static void SetSDLIcon()
|
||||
{
|
||||
#include "../unix/qgl/icon/q2icon.xbm"
|
||||
#include "icon/q2icon.xbm"
|
||||
SDL_Surface *icon;
|
||||
SDL_Color color;
|
||||
Uint8 *ptr;
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
#include <dlfcn.h>
|
||||
|
||||
#include "../../refresh/header/local.h"
|
||||
#include "../refresh/header/local.h"
|
||||
#include "header/glwindow.h"
|
||||
|
||||
void ( APIENTRY *qglAccum )( GLenum op, GLfloat value );
|
|
@ -38,8 +38,8 @@
|
|||
#include <unistd.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "../../client/header/client.h"
|
||||
#include "../header/unix.h"
|
||||
#include "../client/header/client.h"
|
||||
#include "header/unix.h"
|
||||
|
||||
/* Structure containing functions exported from refresh DLL */
|
||||
refexport_t re;
|
Loading…
Reference in a new issue