mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-07 00:11:39 +00:00
Move the gamecode engine into a subdir.
This commit is contained in:
parent
8b7785c2f9
commit
9ea52e8239
8 changed files with 12 additions and 7 deletions
|
@ -1460,6 +1460,7 @@ AC_OUTPUT(
|
||||||
libs/audio/targets/Makefile
|
libs/audio/targets/Makefile
|
||||||
libs/console/Makefile
|
libs/console/Makefile
|
||||||
libs/gamecode/Makefile
|
libs/gamecode/Makefile
|
||||||
|
libs/gamecode/engine/Makefile
|
||||||
libs/gib/Makefile
|
libs/gib/Makefile
|
||||||
libs/models/Makefile
|
libs/models/Makefile
|
||||||
libs/models/alias/Makefile
|
libs/models/alias/Makefile
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
SUBDIRS= engine
|
||||||
|
|
||||||
lib_LTLIBRARIES = libQFgamecode.la
|
clean-local:
|
||||||
|
rm -f *.a
|
||||||
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@
|
|
||||||
|
|
8
libs/gamecode/engine/Makefile.am
Normal file
8
libs/gamecode/engine/Makefile.am
Normal 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@
|
Loading…
Reference in a new issue