1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# The "librw" library, contains all of the useful functions.
lib_LTLIBRARIES = librw.la
librw_la_SOURCES = rw.c
include_HEADERS = rw.h
# Enable shared library build on Cygwin
AM_LDFLAGS = -no-undefined
# The "rw" binary, built against the librw library above.
if EXECUTABLE
bin_PROGRAMS = rw
rw_SOURCES = simplerw.c
rw_CFLAGS = $(IGRAPH_CFLAGS) --std=c99 -pedantic
rw_LDFLAGS = $(IGRAPH_LIBS)
rw_LDADD = $(lib_LTLIBRARIES)
endif
dist_doc_DATA = README example_graphs/Hängematte example_graphs/grid example_graphs/igrid
|