SHELL = @SHELL@ top_srcdir = @top_srcdir@ srcdir = @srcdir@ VPATH = @srcdir@ CCDEPMODE = @CCDEPMODE@ @SET_MAKE@ CXX = @CXX@ LD = @CXX@ STRIP = @STRIP@ CXXFLAGS = @CXXFLAGS@ @CPPUNIT_CFLAGS@ $(CFLGS) -I. -I$(top_srcdir) -I$(top_srcdir)/src @DEFS@ include $(top_srcdir)/build/build.mk OBJS = .PHONY: default build clean distclean test default: @echo "" @echo "Let's try this from the right directory..." @echo "" @cd ../.. && $(MAKE) build: $(OBJS) clean: @rm -f .depend *.o *~ *.lo UnitRunner@EXEEXT@ distclean: clean @rm -rf config.h .deps Makefile config.cache confdefs.h test: include ./.deps/includes check: UnitRunner@EXEEXT@ UnitRunner@EXEEXT@: UnitRunner.o $(BDLIB) $(BDLIB_UNITS) @echo "[LD] $@" $(LD) -o $@ $< -Wl,--whole-archive $(BDLIB_UNITS) -Wl,--no-whole-archive $(subst main.o,,$(BDLIB)) @CPPUNIT_LIBS@