Makefile.am 660 B

123456789101112131415161718192021222324
  1. SUBDIRS = UnitTest++
  2. AM_CPPFLAGS = -I $(srcdir)/UnitTest++/src \
  3. -I $(top_srcdir)/include \
  4. -I $(top_srcdir)/ode/src
  5. LDADD = $(builddir)/UnitTest++/src/libunittestpp.la \
  6. $(top_builddir)/ode/src/libode.la
  7. check_PROGRAMS = tests
  8. TESTS = tests
  9. tests_SOURCES = main.cpp joint.cpp odemath.cpp collision.cpp \
  10. joints/ball.cpp \
  11. joints/fixed.cpp \
  12. joints/hinge.cpp \
  13. joints/hinge2.cpp \
  14. joints/piston.cpp \
  15. joints/pr.cpp \
  16. joints/pu.cpp \
  17. joints/slider.cpp \
  18. joints/universal.cpp