The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

19 lines
485 B

4 weeks ago
  1. EXTRA_DIST += doc/phase.pdf
  2. if HAVE_PDFLATEX
  3. doc/cudd.pdf: doc/cudd.tex $(top_srcdir)/doc/phase.pdf
  4. @if $(AM_V_P); then dest='2>&1'; else dest='> /dev/null 2>&1'; fi; \
  5. cd doc && eval "$(PDFLATEX) cudd $${dest}" && \
  6. eval "$(MAKEINDEX) cudd $${dest}" && \
  7. eval "$(PDFLATEX) cudd $${dest}" && \
  8. eval "$(PDFLATEX) cudd $${dest}"
  9. CLEANFILES += doc/cudd.pdf doc/cudd.aux doc/cudd.idx doc/cudd.ilg doc/cudd.ind \
  10. doc/cudd.log doc/cudd.out doc/cudd.toc
  11. else
  12. doc/cudd.pdf:
  13. endif