mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-11-10 07:12:01 +00:00
* Moved game/baseq2/game.h into game/game.h as it is the
api that the quake2 binary uses
This commit is contained in:
parent
12ef666897
commit
f10de7dd58
7 changed files with 13 additions and 4 deletions
|
@ -59,7 +59,9 @@ AC_CHECK_FUNCS([bzero floor getcwd gethostbyname getmntent getpagesize gettimeof
|
||||||
|
|
||||||
AC_CONFIG_FILES([Makefile
|
AC_CONFIG_FILES([Makefile
|
||||||
src/Makefile
|
src/Makefile
|
||||||
game/Makefile])
|
game/Makefile
|
||||||
|
game/baseq2/Makefile
|
||||||
|
game/ctf/Makefile])
|
||||||
# ref_gl/Makefile
|
# ref_gl/Makefile
|
||||||
# ref_soft/Makefile])
|
# ref_soft/Makefile])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
|
@ -53,5 +53,5 @@ game_so_SOURCES = g_ai.c \
|
||||||
m_flash.c
|
m_flash.c
|
||||||
|
|
||||||
AM_CFLAGS = -fPIC
|
AM_CFLAGS = -fPIC
|
||||||
AM_CPPFLAGS = -I../src
|
AM_CPPFLAGS = -I../../src -I..
|
||||||
LDFLAGS = -shared
|
LDFLAGS = -shared
|
||||||
|
|
4
game/ctf/.gitignore
vendored
Normal file
4
game/ctf/.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
Makefile
|
||||||
|
Makefile.in
|
||||||
|
.libs
|
||||||
|
.deps
|
3
game/ctf/Makefile.am
Normal file
3
game/ctf/Makefile.am
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# $Id$
|
||||||
|
|
||||||
|
|
|
@ -26,4 +26,4 @@ quake2_SOURCES = main.c q_sh.c vid_menu.c vid_so.c glob.c net_udp.c \
|
||||||
#snd_mixa.S
|
#snd_mixa.S
|
||||||
|
|
||||||
AM_CFLAGS = -Wall -Werror -pipe
|
AM_CFLAGS = -Wall -Werror -pipe
|
||||||
AM_CPPFLAGS = -DLINUX_VERSION="\"$(VERSION)\"" -Dstricmp=strcasecmp
|
AM_CPPFLAGS = -DLINUX_VERSION="\"$(VERSION)\"" -Dstricmp=strcasecmp -I../game
|
||||||
|
|
|
@ -62,7 +62,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "qcommon.h"
|
#include "qcommon.h"
|
||||||
#include "../game/game.h"
|
#include "game.h"
|
||||||
#include "rw.h"
|
#include "rw.h"
|
||||||
|
|
||||||
cvar_t *nostdout;
|
cvar_t *nostdout;
|
||||||
|
|
Loading…
Reference in a new issue