- add libs/gamecode/builtins subdir, with libQFgamecode_builtins.la

- add .gitignore files
- fix building :)
This commit is contained in:
Adam Olsen 2001-08-21 22:34:20 +00:00
parent 9ea52e8239
commit 1314c89b6c
10 changed files with 2190 additions and 4 deletions

View File

@ -1461,6 +1461,7 @@ AC_OUTPUT(
libs/console/Makefile
libs/gamecode/Makefile
libs/gamecode/engine/Makefile
libs/gamecode/builtins/Makefile
libs/gib/Makefile
libs/models/Makefile
libs/models/alias/Makefile

View File

@ -188,6 +188,12 @@ ddef_t *PR_Get_Local_Def (progs_t *pr, int offs);
extern struct cvar_s *pr_debug;
//
// PR Cmds stuff
//
void PR_Cmds_Init (void);
//============================================================================
#define MAX_STACK_DEPTH 32

View File

@ -1,4 +1,4 @@
SUBDIRS= engine
SUBDIRS= engine builtins
clean-local:
rm -f *.a

8
libs/gamecode/builtins/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
*.la
*.lo
.deps
.libs
.vimrc
Makefile
Makefile.in

View File

@ -0,0 +1,8 @@
INCLUDES= -I$(top_srcdir)/include
lib_LTLIBRARIES = libQFgamecode_builtins.la
libQFgamecode_builtins_la_LDFLAGS = -version-info 1:0:0
libQFgamecode_builtins_la_SOURCES = pr_cmds.c
LIBLIST = libQFgamecode_builtins.la @LIBRARY_SEARCH_PATH@

File diff suppressed because it is too large Load Diff

8
libs/gamecode/engine/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
*.la
*.lo
.deps
.libs
.vimrc
Makefile
Makefile.in

View File

@ -1380,6 +1380,7 @@ PR_Init (void)
{
PR_Opcode_Init ();
PR_Debug_Init ();
PR_Cmds_Init ();
}
#define PR_AUTOBUILTIN 120

View File

@ -60,7 +60,8 @@ EXTRA_libqfnet_la_SOURCES= net_dos.c net_bw.c net_ipx.c net_mp.c net_ser.c \
net_win.c net_wins.c net_wipx.c
qf_client_LIBS= $(top_builddir)/libs/video/targets/libQFjs.la \
$(top_builddir)/libs/gamecode/libQFgamecode.la \
$(top_builddir)/libs/gamecode/engine/libQFgamecode.la \
$(top_builddir)/libs/gamecode/builtins/libQFgamecode_builtins.la \
$(top_builddir)/libs/gib/libQFgib.la \
$(top_builddir)/libs/audio/libQFcd.la \
$(top_builddir)/libs/audio/libQFsound.la \

View File

@ -80,7 +80,8 @@ server_SOURCES= crudefile.c sv_ccmds.c sv_console.c sv_cvar.c \
sv_progs.c sv_send.c sv_user.c world.c $(syssv_SRC)
qf_server_LIBS= $(top_builddir)/libs/models/libQFmodels.la \
$(top_builddir)/libs/gamecode/libQFgamecode.la \
$(top_builddir)/libs/gamecode/engine/libQFgamecode.la \
$(top_builddir)/libs/gamecode/builtins/libQFgamecode_builtins.la \
$(top_builddir)/libs/util/libQFutil.la
qw_server_SOURCES= $(common_SOURCES) $(server_SOURCES)
@ -88,7 +89,8 @@ qw_server_LDADD= libqfnet.la $(ASM) $(qf_server_LIBS) $(NET_LIBS) $(DL_LIBS) $(C
qw_server_DEPENDENCIES= libqfnet.la $(ASM) $(qf_server_LIBS)
qf_client_LIBS= $(top_builddir)/libs/video/targets/libQFjs.la \
$(top_builddir)/libs/gamecode/libQFgamecode.la \
$(top_builddir)/libs/gamecode/engine/libQFgamecode.la \
$(top_builddir)/libs/gamecode/builtins/libQFgamecode_builtins.la \
$(top_builddir)/libs/audio/libQFcd.la \
$(top_builddir)/libs/audio/libQFsound.la \
$(top_builddir)/libs/util/libQFutil.la