gravatar
ladanyi@tmit.bme.hu
ladanyi@tmit.bme.hu
Include CMake related files in the tarball.
0 2 0
default
2 files changed with 4 insertions and 2 deletions:
↑ Collapse diff ↑
Ignore white space 48 line context
1 1
ACLOCAL_AMFLAGS = -I m4
2 2

	
3 3
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir)
4 4
LDADD = $(top_builddir)/lemon/libemon.la
5 5

	
6 6
EXTRA_DIST = \
7 7
	LICENSE \
8 8
	m4/lx_check_cplex.m4 \
9 9
	m4/lx_check_glpk.m4 \
10 10
	m4/lx_check_soplex.m4 \
11
	CMakeLists.txt
11
	CMakeLists.txt \
12
	cmake
12 13

	
13 14
pkgconfigdir = $(libdir)/pkgconfig
14 15
lemondir = $(pkgincludedir)
15 16
bitsdir = $(lemondir)/bits
16 17
conceptdir = $(lemondir)/concepts
17 18
pkgconfig_DATA =
18 19
lib_LTLIBRARIES =
19 20
lemon_HEADERS =
20 21
bits_HEADERS =
21 22
concept_HEADERS =
22 23
noinst_HEADERS =
23 24
noinst_PROGRAMS =
24 25
bin_PROGRAMS =
25 26
check_PROGRAMS =
26 27
TESTS =
27 28
XFAIL_TESTS =
28 29

	
29 30
include lemon/Makefile.am
30 31
include test/Makefile.am
31 32
include doc/Makefile.am
32 33
include demo/Makefile.am
33 34
include benchmark/Makefile.am
34 35
include tools/Makefile.am
35 36

	
Ignore white space 6 line context
1 1
EXTRA_DIST += \
2 2
	doc/Doxyfile.in \
3 3
	doc/coding_style.dox \
4 4
	doc/dirs.dox \
5 5
	doc/groups.dox \
6 6
	doc/lgf.dox \
7 7
	doc/license.dox \
8 8
	doc/mainpage.dox \
9 9
	doc/namespaces.dox \
10
	doc/html
10
	doc/html \
11
	doc/CMakeLists.txt
11 12

	
12 13
DOC_EPS_IMAGES18 = \
13 14
	nodeshape_0.eps \
14 15
	nodeshape_1.eps \
15 16
	nodeshape_2.eps \
16 17
	nodeshape_3.eps \
17 18
	nodeshape_4.eps
18 19

	
19 20
DOC_EPS_IMAGES = \
20 21
	$(DOC_EPS_IMAGES18)
21 22

	
22 23
DOC_PNG_IMAGES = \
23 24
	$(DOC_EPS_IMAGES:%.eps=doc/gen-images/%.png)
24 25

	
25 26
EXTRA_DIST += $(DOC_EPS_IMAGES:%=doc/images/%)
26 27

	
27 28
doc/html:
28 29
	$(MAKE) $(AM_MAKEFLAGS) html
29 30

	
30 31
GS_COMMAND=gs -dNOPAUSE -dBATCH -q -dEPSCrop -dTextAlphaBits=4 -dGraphicsAlphaBits=4
31 32

	
32 33
$(DOC_EPS_IMAGES18:%.eps=doc/gen-images/%.png): doc/gen-images/%.png: doc/images/%.eps
33 34
	-mkdir doc/gen-images
34 35
	if test ${gs_found} = yes; then \
0 comments (0 inline)