diff options
Diffstat (limited to 'libcnary/Makefile.am')
-rw-r--r-- | libcnary/Makefile.am | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libcnary/Makefile.am b/libcnary/Makefile.am new file mode 100644 index 0000000..ef61c31 --- /dev/null +++ b/libcnary/Makefile.am @@ -0,0 +1,18 @@ +AM_CFLAGS = $(GLOBAL_CFLAGS) -Iinclude +AM_LDFLAGS = + +noinst_LTLIBRARIES = libcnary.la +libcnary_la_LIBADD = +libcnary_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined +libcnary_la_SOURCES = \ + node.c \ + list.c \ + node_list.c \ + iterator.c \ + node_iterator.c \ + include/node.h \ + include/list.h \ + include/node_list.h \ + include/iterator.h \ + include/node_iterator.h \ + include/object.h |