quakeforge/libs/ecs/Makemodule.am
Bill Currie 3c4dccf801 [ecs] Organize headers and code
There's now a main ecs.h file that includes the sub-system headers,
removing the need to explicitly include several header files, but the
sub-systems are a less cluttered.
2022-12-13 15:31:35 +09:00

14 lines
390 B
Text

include libs/ecs/test/Makemodule.am
ecs_deps=libs/models/libQFmodels.la 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