File: Makefile.am

package info (click to toggle)
rw 0.9%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,004 kB
  • sloc: ansic: 322; makefile: 26
file content (19 lines) | stat: -rw-r--r-- 534 bytes parent folder | download | duplicates (2)
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