mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 00:40:55 +00:00
e17d8ac9db
This includes both normal functions and a Set class (and SetIterator class). Most of the methods are implemented as builtins.
21 lines
656 B
Makefile
21 lines
656 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_set.c rua_string.c
|