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 96 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

	
36 37
MRPROPERFILES = \
37 38
	aclocal.m4 \
38 39
	config.h.in \
39 40
	config.h.in~ \
40 41
	configure \
41 42
	Makefile.in \
42 43
	build-aux/config.guess \
43 44
	build-aux/config.sub \
44 45
	build-aux/depcomp \
45 46
	build-aux/install-sh \
46 47
	build-aux/ltmain.sh \
47 48
	build-aux/missing \
48 49
	doc/doxygen.log
49 50

	
50 51
mrproper:
51 52
	$(MAKE) $(AM_MAKEFLAGS) maintainer-clean
52 53
	-rm -f $(MRPROPERFILES)
53 54

	
54 55
dist-bz2: dist
55 56
	zcat $(PACKAGE)-$(VERSION).tar.gz | \
56 57
	bzip2 --best -c > $(PACKAGE)-$(VERSION).tar.bz2
57 58

	
58 59
distcheck-bz2: distcheck
59 60
	zcat $(PACKAGE)-$(VERSION).tar.gz | \
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 \
35 36
	  $(GS_COMMAND) -sDEVICE=pngalpha -r18 -sOutputFile=$@ $<; \
36 37
	else \
37 38
	  echo; \
38 39
	  echo "Ghostscript not found."; \
39 40
	  echo; \
40 41
	  exit 1; \
41 42
	fi
42 43

	
43 44
html-local: $(DOC_PNG_IMAGES)
44 45
	if test ${doxygen_found} = yes; then \
45 46
	  cd doc; \
46 47
	  doxygen Doxyfile; \
47 48
	  cd ..; \
48 49
	else \
49 50
	  echo; \
50 51
	  echo "Doxygen not found."; \
51 52
	  echo; \
52 53
	  exit 1; \
53 54
	fi
54 55

	
55 56
clean-local:
56 57
	-rm -rf doc/html
57 58
	-rm -f doc/doxygen.log
58 59
	-rm -f $(DOC_PNG_IMAGES)
0 comments (0 inline)