File: Makefile.am

package info (click to toggle)
rw 0.8%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,000 kB
  • ctags: 68
  • sloc: ansic: 322; makefile: 28
file content (16 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# The "librw" library, contains all of the useful functions.
lib_LTLIBRARIES = librw.la
librw_la_SOURCES = rw.c
include_HEADERS = rw.h

# 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/*