# # Makefile for ofstd/tests # @SET_MAKE@ SHELL = /bin/sh VPATH = @srcdir@:@top_srcdir@/include:@top_srcdir@/@configdir@/include srcdir = @srcdir@ top_srcdir = @top_srcdir@ configdir = @top_srcdir@/@configdir@ include $(configdir)/@common_makefile@ LOCALINCLUDES = -I$(top_srcdir)/include LIBDIRS = -L$(top_srcdir)/libsrc LOCALLIBS = -lofstd $(CHARCONVLIBS) $(MATHLIBS) LOCALTRASH = *.out testfile.\$$\$$\$$ test_objs = tests.o tatof.o tmap.o tvec.o tfilsys.o tftoa.o tthread.o \ tbase64.o tstring.o tstrutl.o tlist.o tstack.o tofdatim.o tofstd.o \ tmarkup.o tchrenc.o txml.o tuuid.o toffile.o tmem.o toption.o \ ttuple.o tlimits.o tvariant.o terror.o objs = $(test_objs) progs = tests all: $(progs) tests: $(test_objs) $(CXX) $(CXXFLAGS) $(LIBDIRS) $(LDFLAGS) -o $@ $(test_objs) $(LOCALLIBS) $(LIBS) check: tests ./tests check-exhaustive: tests ./tests -x install: all clean: rm -f $(objs) $(progs) $(LOCALTRASH) $(TRASH) distclean: rm -f $(objs) $(progs) $(LOCALTRASH) $(DISTTRASH) dependencies: $(CXX) -MM $(defines) $(includes) $(CPPFLAGS) $(CXXFLAGS) *.cc > $(DEP) include $(DEP)