flags = $(CXXFLAGS.o) $(CXXFLAGS)
endif
+%.go : %.cc Makefile
+ @echo =====debug========= $<
+ @$(CXX) $(flags) -c $< -o $@
+%.o : %.cc Makefile
+ @echo =====optimized===== $<
+ @$(CXX) $(flags) -c $< -o $@
+
+
all: logtest.check reference.check tensor.check
exe: $(all:.check=.testcase)
output: $(all:.check=.output)
D = ../..
-include ../../deal.II/Make.global_options
+include ../../common/Make.global_options
lib-tag = "deal_II_libraries="
endif
+%.go : %.cc Makefile
+ @echo =====debug========= $<
+ @$(CXX) $(flags) -c $< -o $@
+%.o : %.cc Makefile
+ @echo =====optimized===== $<
+ @$(CXX) $(flags) -c $< -o $@
+
# rule to make executables
flags = $(CXXFLAGS.o) $(CXXFLAGS)
endif
+%.go : %.cc Makefile
+ @echo =====debug========= $<
+ @$(CXX) $(flags) -c $< -o $@
+%.o : %.cc Makefile
+ @echo =====optimized===== $<
+ @$(CXX) $(flags) -c $< -o $@
+
+
all: check
############################################################
flags = $(CXXFLAGS.o) $(CXXFLAGS)
endif
+
+%.go : %.cc Makefile
+ @echo =====debug========= $<
+ @$(CXX) $(flags) -c $< -o $@
+%.o : %.cc Makefile
+ @echo =====optimized===== $<
+ @$(CXX) $(flags) -c $< -o $@
+
+
all: solver.check mgbase.check mg.check
exe: $(all:.check=.testcase) benchmark
run: $(all:.check=.output)