mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
e2464ed879
Removed a bogus dependency from libQFecs, and fixed the order of ui libraries. This takes care of some first-time make install issues. Libtool needs the libraries to be specified in dependency order.
15 lines
385 B
Text
15 lines
385 B
Text
include libs/ecs/test/Makemodule.am
|
|
|
|
ecs_deps=libs/util/libQFutil.la
|
|
|
|
lib_LTLIBRARIES += libs/ecs/libQFecs.la
|
|
|
|
libs_ecs_libQFecs_la_LDFLAGS= $(lib_ldflags)
|
|
libs_ecs_libQFecs_la_LIBADD= $(ecs_deps)
|
|
libs_ecs_libQFecs_la_DEPENDENCIES= $(ecs_deps)
|
|
libs_ecs_libQFecs_la_SOURCES= \
|
|
libs/ecs/component.c \
|
|
libs/ecs/ecs.c \
|
|
libs/ecs/entity.c \
|
|
libs/ecs/hierarchy.c \
|
|
libs/ecs/subpool.c
|