mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
17 lines
315 B
Makefile
17 lines
315 B
Makefile
|
|
EXTRA_DIST = README t.cc
|
||
|
|
|
||
|
|
EXTRA_PROGRAMS = \
|
||
|
|
swap \
|
||
|
|
bad_temps \
|
||
|
|
bad_xpr_const_ref \
|
||
|
|
tvmet
|
||
|
|
|
||
|
|
AM_CXXFLAGS= -I$(top_srcdir)/include -I$(top_builddir)/include
|
||
|
|
|
||
|
|
swap_SOURCES = swap.cc
|
||
|
|
bad_temps_SOURCES = bad_temps.cc
|
||
|
|
bad_xpr_const_ref_SOURCES = bad_xpr_const_ref.cc
|
||
|
|
tvmet_SOURCES = tvmet.cc
|
||
|
|
|
||
|
|
tests: $(EXTRA_PROGRAMS)
|