2012-09-09 22:20:47 +02:00
|
|
|
COMPONENT = gb.data
|
|
|
|
include $(top_srcdir)/component.am
|
|
|
|
|
|
|
|
gblib_LTLIBRARIES = gb.data.la
|
|
|
|
|
|
|
|
gb_data_la_LDFLAGS = -module @LD_FLAGS@
|
2014-07-28 05:34:24 +02:00
|
|
|
gb_data_la_CPPFLAGS = -I$(top_srcdir)/share -I$(top_srcdir)/gbx
|
2012-09-09 22:20:47 +02:00
|
|
|
gb_data_la_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
|
|
|
gb_data_la_SOURCES = \
|
2013-10-13 20:29:32 +02:00
|
|
|
main.h main.c list.h lookup3.h string_compare.h \
|
2012-09-09 22:20:47 +02:00
|
|
|
c_list.h c_list.c \
|
|
|
|
c_deque.h c_deque.c \
|
2013-08-20 00:48:29 +02:00
|
|
|
c_circular.h c_circular.c \
|
2014-07-12 02:20:35 +02:00
|
|
|
c_avltree.h c_avltree.c \
|
2014-07-28 05:34:24 +02:00
|
|
|
c_graph.h c_graph.c \
|
|
|
|
c_heap.h c_heap.c
|
2012-09-09 22:20:47 +02:00
|
|
|
|