diff options
author | Nikias Bassen | 2013-12-13 00:44:17 +0100 |
---|---|---|
committer | Nikias Bassen | 2013-12-13 00:44:17 +0100 |
commit | a798afc8b5b00a43f4b121168e0419df2d398338 (patch) | |
tree | c178d7a149028944254511d03f91266ca43cfcbd /libcnary/Makefile.am | |
parent | 3b7647499474619b3e24bf01105b6b037887a0ed (diff) | |
download | libplist-a798afc8b5b00a43f4b121168e0419df2d398338.tar.gz libplist-a798afc8b5b00a43f4b121168e0419df2d398338.tar.bz2 |
change build system to autotools
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 |