mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-12 00:01:43 +00:00
383a7fe5e1
Other than its blocking of access to certain files, it really wasn't that useful compared to the functions in qfs, and pointless with access to qfs anyway.
21 lines
661 B
Makefile
21 lines
661 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
AM_CFLAGS= @PREFER_PIC@
|
|
AM_CPPFLAGS= -I$(top_srcdir)/include $(FNM_FLAGS)
|
|
|
|
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_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_set.c rua_string.c
|