# HG changeset patch # User Alpar Juttner # Date 2007-12-18 12:06:37 # Node ID 1a1c050e941bbdecb41419f5538e59f769e02b2a # Parent 51eaad3a817b51d4ce565a160fd530a81e4fd4dc 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 diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -4,6 +4,14 @@ *.rej *~ *.o +.#.* +Makefile.in +aclocal.m4 +config.h.in +configure syntax: regexp html/.* +autom4te.cache/.* +build-aux/.* +objs.*/.* diff --git a/doc/Makefile.am b/doc/Makefile.am --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -9,7 +9,6 @@ cd doc; \ doxygen Doxyfile; \ cd ..; \ - cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \ fi doc-clean: @@ -19,7 +18,6 @@ cd doc; \ doxygen Doxyfile; \ cd ..; \ - cp $(srcdir)/doc/icons/geom/ftv2* doc/html; \ fi clean-local: diff --git a/lemon/Makefile.am b/lemon/Makefile.am --- a/lemon/Makefile.am +++ b/lemon/Makefile.am @@ -11,7 +11,8 @@ lemon_libemon_la_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS) $(SOPLEX_CXXFLAGS) lemon_libemon_la_LDFLAGS = $(GLPK_LIBS) $(CPLEX_LIBS) $(SOPLEX_LIBS) -lemon_HEADERS += +lemon_HEADERS += \ + lemon/list_graph.h bits_HEADERS += diff --git a/lemon/list_graph.h b/lemon/list_graph.h new file mode 100644