You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
712 B
Makefile
34 lines
712 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AM_CPPFLAGS = \
|
|
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
|
|
-DPACKAGE_SRC_DIR=\""$(srcdir)"\" \
|
|
-DPACKAGE_DATA_DIR=\""$(pkgdatadir)"\" \
|
|
$(LIBTDATA_CFLAGS) -I../include
|
|
|
|
AM_CFLAGS =\
|
|
-Wall\
|
|
-g
|
|
|
|
lib_LTLIBRARIES = libtdata.la
|
|
|
|
|
|
libtdata_la_SOURCES = \
|
|
avl.c lslist.c redblack.c splay.c \
|
|
tree.c usrtc.c bitwise.c idx_allocator.c
|
|
|
|
libtdata_la_LDFLAGS =
|
|
|
|
libtdata_la_LIBADD =
|
|
|
|
##include_HEADERS = \
|
|
## ../include/tdata/macro.h ../include/tdata/tree.h ../include/tdata/usrtc.h \
|
|
## ../include/tdata/bitwise.h ../include/tdata/idx_allocator.h
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libtdata-0.2.pc
|
|
|
|
EXTRA_DIST = \
|
|
libtdata-0.2.pc.in
|
|
|