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.

16 lines
402 B

4 weeks ago
  1. cudd_libcudd_la_SOURCES += st/st.h st/st.c
  2. check_PROGRAMS += st/testst
  3. st_testst_SOURCES = st/testst.c
  4. st_testst_CPPFLAGS = $(cudd_libcudd_la_CPPFLAGS)
  5. st_testst_LDADD = cudd/libcudd.la
  6. check_SCRIPTS += st/test_st.test
  7. EXTRA_DIST += st/test_st.test.in
  8. if !CROSS_COMPILING
  9. TESTS += st/test_st.test
  10. endif !CROSS_COMPILING
  11. st/test_st.test: st/test_st.test.in Makefile
  12. $(do_subst) $< > $@
  13. chmod +x $@