mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 05:32:24 +00:00
* Now builds both baseq2 and ctf game.so
This commit is contained in:
parent
c8157a5155
commit
c333a4adc7
5 changed files with 39 additions and 5 deletions
|
@ -1,5 +1,3 @@
|
|||
# $Id$
|
||||
|
||||
## Process this file with automake to create Makefile.in
|
||||
|
||||
SUBDIRS = src game
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# $Id$
|
||||
|
||||
SUBDIRS = baseq2
|
||||
SUBDIRS = baseq2 ctf
|
||||
|
|
|
@ -1,3 +1,39 @@
|
|||
# $Id$
|
||||
|
||||
|
||||
#############################################################################
|
||||
# CTF
|
||||
#############################################################################
|
||||
|
||||
bin_PROGRAMS = game.so
|
||||
game_so_SOURCES = \
|
||||
g_ai.c \
|
||||
g_chase.c \
|
||||
g_cmds.c \
|
||||
g_combat.c \
|
||||
g_ctf.c \
|
||||
g_func.c \
|
||||
g_items.c \
|
||||
g_main.c \
|
||||
g_misc.c \
|
||||
g_monster.c \
|
||||
g_phys.c \
|
||||
g_save.c \
|
||||
g_spawn.c \
|
||||
g_svcmds.c \
|
||||
g_target.c \
|
||||
g_trigger.c \
|
||||
g_utils.c \
|
||||
g_weapon.c \
|
||||
m_move.c \
|
||||
p_client.c \
|
||||
p_hud.c \
|
||||
p_menu.c \
|
||||
p_trail.c \
|
||||
p_view.c \
|
||||
p_weapon.c \
|
||||
q_shared.c
|
||||
|
||||
AM_CFLAGS = -fPIC
|
||||
AM_CPPFLAGS = -I../../src -I..
|
||||
LDFLAGS = -shared
|
||||
|
|
|
@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software
|
|||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
*/
|
||||
#include "../qcommon/gcc_attr.h"
|
||||
#include "gcc_attr.h"
|
||||
|
||||
// game.h -- game dll information visible to server
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software
|
|||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
*/
|
||||
#include "../qcommon/gcc_attr.h"
|
||||
#include "gcc_attr.h"
|
||||
|
||||
// q_shared.h -- included first by ALL program modules
|
||||
|
||||
|
|
Loading…
Reference in a new issue