You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
351 B
17 lines
351 B
ACLOCAL_AMFLAGS = -I m4
|
|
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
AM_CFLAGS += -I../include/
|
|
|
|
TRDATALIBS = cbuf/libcbuf.la \
|
|
hash/libhash.la \
|
|
queue/libqueue.la \
|
|
tree/libtree.la
|
|
|
|
lib_LTLIBRARIES = libtrdata.la
|
|
|
|
libtrdata_la_SOURCES =
|
|
libtrdata_la_CFLAGS = $(AM_CFLAGS)
|
|
libtrdata_la_LIBADD = $(TRDATALIBS)
|
|
|
|
SUBDIRS = cbuf hash queue tree
|