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.
 
 
 
 
 
 

20 lines
399 B

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