Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

28 linhas
643 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. if BUILD_DOCUMENTATION
  7. doxygen_tests = check-doxygen
  8. endif
  9. EXTRA_DIST = check-doxygen check-source check-win32
  10. noinst_PROGRAMS = simple bench $(cppunit_tests)
  11. TESTS = simple check-source check-win32 $(doxygen_tests) $(cppunit_tests)
  12. simple_SOURCES = simple.c
  13. simple_LDADD = ../caca/libcaca.la
  14. bench_SOURCES = bench.c
  15. bench_LDADD = ../caca/libcaca.la
  16. caca_test_SOURCES = caca-test.cpp canvas.cpp dirty.cpp driver.cpp export.cpp
  17. caca_test_CXXFLAGS = $(CPPUNIT_CFLAGS)
  18. caca_test_LDADD = ../caca/libcaca.la $(CPPUNIT_LIBS)