Move the gamecode engine into a subdir.

This commit is contained in:
Adam Olsen 2001-08-21 21:05:26 +00:00
parent 8b7785c2f9
commit 9ea52e8239
8 changed files with 12 additions and 7 deletions

View file

@ -1460,6 +1460,7 @@ AC_OUTPUT(
libs/audio/targets/Makefile
libs/console/Makefile
libs/gamecode/Makefile
libs/gamecode/engine/Makefile
libs/gib/Makefile
libs/models/Makefile
libs/models/alias/Makefile

View file

@ -1,8 +1,4 @@
INCLUDES= -I$(top_srcdir)/include
SUBDIRS= engine
lib_LTLIBRARIES = libQFgamecode.la
libQFgamecode_la_LDFLAGS = -version-info 1:0:0
libQFgamecode_la_SOURCES = pr_edict.c pr_debug.c pr_exec.c pr_opcode.c pr_strings.c
LIBLIST = libQFgamecode.la @LIBRARY_SEARCH_PATH@
clean-local:
rm -f *.a

View file

@ -0,0 +1,8 @@
INCLUDES= -I$(top_srcdir)/include
lib_LTLIBRARIES = libQFgamecode.la
libQFgamecode_la_LDFLAGS = -version-info 1:0:0
libQFgamecode_la_SOURCES = pr_edict.c pr_debug.c pr_exec.c pr_opcode.c pr_strings.c
LIBLIST = libQFgamecode.la @LIBRARY_SEARCH_PATH@