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.

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. SUBDIRS = math tutorial sandbox xolotl
  2. AM_CPPFLAGS = -I$(top_srcdir)/src
  3. bench: benchsuite$(EXEEXT)
  4. ./benchsuite$(EXEEXT)
  5. all-local: $(noinst_PROGRAMS)
  6. test x$(MAKE_FSELF) = xno || make_fself quad$(EXEEXT) quad.self
  7. test x$(MAKE_FSELF) = xno || make_fself benchsuite$(EXEEXT) benchsuite.self
  8. test x$(MAKE_FSELF) = xno || make_fself testsuite$(EXEEXT) testsuite.self
  9. CLEANFILES = $(noinst_PROGRAMS:%$(EXEEXT)=%.self) \
  10. $(noinst_PROGRAMS:%$(EXEEXT)=%.elf) \
  11. $(noinst_PROGRAMS:%$(EXEEXT)=%.exe)
  12. EXTRA_DIST = data/gradient.png
  13. noinst_PROGRAMS = quad benchsuite testsuite
  14. TESTS = testsuite
  15. testsuite_SOURCES = testsuite.cpp \
  16. unit/vector.cpp unit/matrix.cpp unit/half.cpp unit/trig.cpp \
  17. unit/build.cpp unit/real.cpp unit/image.cpp unit/quat.cpp unit/cmplx.cpp \
  18. unit/array.cpp
  19. testsuite_CPPFLAGS = @LOL_CFLAGS@ @PIPI_CFLAGS@
  20. testsuite_LDFLAGS = $(top_builddir)/src/liblol.a @LOL_LIBS@ @PIPI_LIBS@
  21. testsuite_DEPENDENCIES = $(top_builddir)/src/liblol.a
  22. benchsuite_SOURCES = benchsuite.cpp \
  23. benchmark/vector.cpp benchmark/half.cpp benchmark/trig.cpp \
  24. benchmark/real.cpp
  25. benchsuite_CPPFLAGS = @LOL_CFLAGS@ @PIPI_CFLAGS@
  26. benchsuite_LDFLAGS = $(top_builddir)/src/liblol.a @LOL_LIBS@ @PIPI_LIBS@
  27. benchsuite_DEPENDENCIES = $(top_builddir)/src/liblol.a
  28. quad_SOURCES = debug/quad.cpp
  29. quad_CPPFLAGS = @LOL_CFLAGS@ @PIPI_CFLAGS@
  30. quad_LDFLAGS = $(top_builddir)/src/liblol.a @LOL_LIBS@ @PIPI_LIBS@
  31. quad_DEPENDENCIES = $(top_builddir)/src/liblol.a