mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 00:24:12 +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.
34 lines
764 B
Text
34 lines
764 B
Text
include libs/ui/test/Makemodule.am
|
|
|
|
lib_LTLIBRARIES += \
|
|
libs/ui/libQFui.la \
|
|
libs/ui/libQFgui.la
|
|
|
|
gui_deps = \
|
|
libs/ui/libQFui.la
|
|
|
|
gui_libadd = \
|
|
$(FREETYPE_LIBS) \
|
|
$(HARFBUZZ_LIBS)
|
|
|
|
ui_deps = \
|
|
libs/ecs/libQFecs.la \
|
|
libs/util/libQFutil.la
|
|
|
|
libs_ui_libQFgui_la_LDFLAGS= $(lib_ldflags)
|
|
libs_ui_libQFgui_la_LIBADD= $(gui_deps) $(ui_deps) $(gui_libadd)
|
|
libs_ui_libQFgui_la_DEPENDENCIES= $(gui_deps) $(ui_deps)
|
|
libs_ui_libQFgui_la_SOURCES= \
|
|
libs/ui/canvas.c \
|
|
libs/ui/font.c \
|
|
libs/ui/text.c
|
|
|
|
libs_ui_libQFui_la_LDFLAGS= $(lib_ldflags)
|
|
libs_ui_libQFui_la_LIBADD= $(ui_deps)
|
|
libs_ui_libQFui_la_DEPENDENCIES= $(ui_deps)
|
|
libs_ui_libQFui_la_SOURCES= \
|
|
libs/ui/inputline.c \
|
|
libs/ui/passage.c \
|
|
libs/ui/txtbuffer.c \
|
|
libs/ui/view.c \
|
|
libs/ui/vrect.c
|