diff options
author | KatolaZ <katolaz@freaknet.org> | 2017-09-27 15:06:31 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2017-09-27 15:06:31 +0100 |
commit | 3aee2fd43e3059a699af2b63c6f2395e5a55e515 (patch) | |
tree | 58c95505a0906ed9cfa694f9dbd319403fd8f01d /configure.ac |
First commit on github -- NetBunch 1.0
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..e61262b --- /dev/null +++ b/configure.ac @@ -0,0 +1,20 @@ +AC_INIT([netbunch], [1.0], [v.nicosia@qmul.ac.uk]) +AM_INIT_AUTOMAKE([foreign -Wall -Werror subdir-objects]) +: ${CFLAGS=""} +AC_PROG_CC +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_FILES([Makefile src/Makefile src/ba/Makefile src/er/Makefile src/graph_info/Makefile \ + src/dms/Makefile src/bb_fitness/Makefile src/bbv/Makefile src/conf/Makefile \ + src/deg_seq/Makefile src/power_law/Makefile src/shortest/Makefile\ + src/components/Makefile src/kruskal/Makefile src/clust/Makefile \ + src/fitmle/Makefile src/dijkstra/Makefile src/f3m/Makefile \ + src/betweenness/Makefile src/label_prop/Makefile src/cnm/Makefile \ + src/johnson/Makefile src/gn/Makefile src/modularity/Makefile \ + src/pm/Makefile src/knn/Makefile src/hidden/Makefile \ + src/ws/Makefile doc/Makefile examples/Makefile]) +AC_CHECK_PROGS([RONN], [ronn]) +if test -z "$RONN"; then + AC_MSG_WARN([ronn not found -- continuing without document rebuild support]) +fi +AM_CONDITIONAL([HAVE_RONN], [test -n "$RONN"]) +AC_OUTPUT |