1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/lib/common \
-I$(top_srcdir)/lib/cgraph \
-I$(top_srcdir)/lib/cdt
if WITH_SFDP
bin_PROGRAMS = gvmap cluster
dist_bin_SCRIPTS = gvmap.sh
man_MANS = gvmap.1 cluster.1 gvmap.sh.1
if ENABLE_MAN_PDFS
pdf_DATA = gvmap.1.pdf cluster.1.pdf gvmap.sh.1.pdf
endif
endif
noinst_HEADERS = make_map.h power.h country_graph_coloring.h
gvmap_SOURCES = gvmap.c make_map.c power.c country_graph_coloring.c
cluster_SOURCES = cluster.c make_map.c power.c country_graph_coloring.c
gvmap_LDADD = \
$(top_builddir)/lib/sfdpgen/libsfdpgen_C.la \
$(top_builddir)/lib/edgepaint/libedgepaint_C.la \
$(top_builddir)/lib/neatogen/libneatogen_C.la \
$(top_builddir)/lib/sparse/libsparse_C.la \
$(top_builddir)/lib/gvc/libgvc.la \
$(top_builddir)/lib/cgraph/libcgraph.la \
$(top_builddir)/lib/rbtree/librbtree_C.la \
$(top_builddir)/lib/util/libutil_C.la \
$(GTS_LIBS) -lm
cluster_LDADD = \
$(top_builddir)/lib/sfdpgen/libsfdpgen_C.la \
$(top_builddir)/lib/edgepaint/libedgepaint_C.la \
$(top_builddir)/lib/neatogen/libneatogen_C.la \
$(top_builddir)/lib/sparse/libsparse_C.la \
$(top_builddir)/lib/gvc/libgvc.la \
$(top_builddir)/lib/cgraph/libcgraph.la \
$(top_builddir)/lib/rbtree/librbtree_C.la \
$(top_builddir)/lib/util/libutil_C.la \
$(GTS_LIBS) -lm
gvmap.sh :
.1.1.pdf:
rm -f $@; pdffile=$@; psfile=$${pdffile%pdf}ps; \
$(GROFF) -Tps -man $< > $$psfile || { rm -f $$psfile; exit 1; }; \
$(PS2PDF) $$psfile && rm -f $$psfile || { rm -f $$psfile; exit 1; }
SUFFIXES = .1 .1.pdf
EXTRA_DIST = gvmap.1 cluster.1 gvmap.sh.1
DISTCLEANFILES = $(pdf_DATA)
|