gravatar
alpar (Alpar Juttner)
alpar@cs.elte.hu
More fixes that make autotools working for the empty repo - Add a dummy lemon/list_graph.h file and put it in the Makefile.am - Remove the unnecesary icons from doc/icons/geom folder. - Update .hgignore
0 3 1
default
4 files changed with 10 insertions and 3 deletions:
↑ Collapse diff ↑
Ignore white space 6 line context
new binary file 100644
Ignore white space 6 line context
1 1
syntax: glob
2 2
*.obj
3 3
*.orig
4 4
*.rej
5 5
*~
6 6
*.o
7
.#.*
8
Makefile.in
9
aclocal.m4
10
config.h.in
11
configure
7 12

	
8 13
syntax: regexp
9 14
html/.*
15
autom4te.cache/.*
16
build-aux/.*
17
objs.*/.*
Ignore white space 24 line context
1 1
htmldir = $(datadir)/doc/$(PACKAGE)/html
2 2

	
3 3
EXTRA_DIST += \
4 4
	doc/Makefile \
5 5
	doc/Doxyfile.in
6 6

	
7 7
doc:
8 8
	if test ${doxygen_found} = yes; then \
9 9
	  cd doc; \
10 10
	  doxygen Doxyfile; \
11 11
	  cd ..; \
12
	  cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \
13 12
	fi
14 13

	
15 14
doc-clean:
16 15
	if test ${doxygen_found} = yes; then \
17 16
	  rm -rf doc/html; \
18 17
	  rm -f doc/doxygen.log; \
19 18
	  cd doc; \
20 19
	  doxygen Doxyfile; \
21 20
	  cd ..; \
22
	  cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \
23 21
	fi
24 22

	
25 23
clean-local:
26 24
	-rm -rf doc/html
27 25
	-rm -f doc/doxygen.log
28 26

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

	
32 30
if WANT_DOC
33 31

	
34 32
install-data-local: doc/html
Ignore white space 6 line context
... ...
@@ -2,17 +2,18 @@
2 2
	lemon/Makefile \
3 3
	lemon/lemon.pc.in
4 4

	
5 5
pkgconfig_DATA += lemon/lemon.pc
6 6

	
7 7
lib_LTLIBRARIES += lemon/libemon.la
8 8

	
9 9
lemon_libemon_la_SOURCES =
10 10

	
11 11
lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS)
12 12
lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS)
13 13

	
14
lemon_HEADERS +=
14
lemon_HEADERS += \
15
	lemon/list_graph.h
15 16

	
16 17
bits_HEADERS +=
17 18

	
18 19
concept_HEADERS +=
0 comments (0 inline)