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.
 
 
 
 
 
 

25 regels
584 B

  1. # $Id$
  2. AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/cucul -I../cucul \
  3. -I$(top_srcdir)/caca
  4. if USE_CPPUNIT
  5. cppunit_tests = cucul-test caca-test
  6. endif
  7. noinst_PROGRAMS = simple $(cppunit_tests)
  8. TESTS = $(noinst_PROGRAMS)
  9. simple_SOURCES = simple.c
  10. simple_LDADD = ../cucul/libcucul.la
  11. cucul_test_SOURCES = cucul-test.cpp canvas.cpp
  12. cucul_test_CXXFLAGS = $(CPPUNIT_CFLAGS)
  13. cucul_test_LDADD = ../cucul/libcucul.la $(CPPUNIT_LIBS)
  14. caca_test_SOURCES = caca-test.cpp driver.cpp
  15. caca_test_CXXFLAGS = $(CPPUNIT_CFLAGS)
  16. caca_test_LDADD = ../caca/libcaca.la $(CPPUNIT_LIBS)