OBJDIRS	+= test_enclayers
##note that xx=*.cc will not expand. wildcard *.cc will include files from other directories.
##%.o will include testall
TESTALL_OBJS := $(patsubst %.cc,$(OBJDIR)/%.o,$(wildcard test_enclayers/*.cc))
TESTALL_EXES := $(patsubst test_enclayers/%.cc,mtl/test_enclayers_exe/%,$(wildcard test_enclayers/*.cc))

all: $(TESTALL_OBJS) $(TESTALL_EXES)
