mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-07 16:31:32 +00:00
This makes gib depend on gamecode, but removes the dependency on gib from ruamoko. Unfortunately, carne now needs to be linked against gamecode even though it never uses it.
21 lines
646 B
Makefile
21 lines
646 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
AM_CFLAGS= @PREFER_PIC@
|
|
INCLUDES= -I$(top_srcdir)/include
|
|
|
|
lib_ldflags=-version-info $(QUAKE_LIBRARY_VERSION_INFO) \
|
|
-rpath $(libdir) -no-undefined
|
|
rua_libs= \
|
|
$(top_builddir)/libs/gamecode/libQFgamecode.la \
|
|
$(top_builddir)/libs/util/libQFutil.la
|
|
|
|
lib_LTLIBRARIES= libQFruamoko.la
|
|
|
|
libQFruamoko_la_LDFLAGS= $(lib_ldflags)
|
|
libQFruamoko_la_LIBADD= $(rua_libs)
|
|
libQFruamoko_la_DEPENDENCIES= $(rua_libs)
|
|
libQFruamoko_la_SOURCES= \
|
|
pr_cmds.c \
|
|
rua_cbuf.c rua_cmd.c rua_cvar.c rua_file.c rua_hash.c rua_init.c \
|
|
rua_math.c rua_msgbuf.c rua_obj.c rua_plist.c rua_qfile.c rua_qfs.c \
|
|
rua_script.c rua_string.c
|