Skip to content

Commit f54f533

Browse files
fsomenziivmai
authored andcommitted
Import cudd-3.0.0.tar.gz
1 parent 61a4660 commit f54f533

File tree

334 files changed

+83866
-74631
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

334 files changed

+83866
-74631
lines changed

Doxyfile.in

Lines changed: 2383 additions & 0 deletions
Large diffs are not rendered by default.

Makefile

Lines changed: 0 additions & 323 deletions
This file was deleted.

Makefile.am

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
ACLOCAL_AMFLAGS = -I m4
2+
3+
include_HEADERS = cudd/cudd.h
4+
if DDDMP
5+
include_HEADERS += dddmp/dddmp.h
6+
endif
7+
if OBJ
8+
include_HEADERS += cplusplus/cuddObj.hh
9+
endif
10+
11+
check_PROGRAMS =
12+
check_SCRIPTS =
13+
dist_check_DATA =
14+
EXTRA_DIST = README RELEASE.NOTES LICENSE groups.dox
15+
TESTS =
16+
CLEANFILES =
17+
noinst_LTLIBRARIES =
18+
TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
19+
$(top_srcdir)/build-aux/tap-driver.sh
20+
21+
do_subst = sed \
22+
-e 's,[@]EXEEXT[@],$(EXEEXT),g' \
23+
-e 's,[@]srcdir[@],$(srcdir),g'
24+
25+
include $(top_srcdir)/cudd/Included.am
26+
include $(top_srcdir)/util/Included.am
27+
include $(top_srcdir)/st/Included.am
28+
include $(top_srcdir)/epd/Included.am
29+
include $(top_srcdir)/mtr/Included.am
30+
include $(top_srcdir)/dddmp/Included.am
31+
include $(top_srcdir)/cplusplus/Included.am
32+
include $(top_srcdir)/nanotrav/Included.am
33+
include $(top_srcdir)/doc/Included.am
34+
35+
dist-hook:
36+
rm -rf `find $(distdir) -name .svn`
37+
38+
.PHONY :
39+
40+
all: html/index.html doc/cudd.pdf
41+
42+
if HAVE_DOXYGEN
43+
44+
html/index.html: Doxyfile $(lib_LTLIBRARIES)
45+
@if $(AM_V_P); then dest='2>&1'; else dest='> /dev/null 2>&1'; fi; \
46+
eval "$(DOXYGEN) $< $${dest}"
47+
48+
clean-local:
49+
rm -rf html doxygen_sqlite3.db
50+
51+
else
52+
53+
html/index.html:
54+
55+
endif
56+
57+
CLEANFILES += $(check_SCRIPTS)

0 commit comments

Comments
 (0)