<h3>General</h3>
<ol>
+<li> Changed: Doing <code>make clean</code> was supposed to only remove object
+files but not libraries; however, it also removed the TBB libraries and a
+few executables. This has now been changed: <code>make clean</code> now only
+removes stuff that isn't needed to run executables, i.e. it leaves the TBB
+and other libraries alone. As before, the target <code>make distclean</code>
+is responsible for removing everything.
+<br>
+(Max Jensen, Wolfgang Bangerth, 2011/06/14)
+
<li> New: The Triangulation and DoFHandler classes, together with many
smaller classes can now be serialized, i.e. their data can be written
to an output stream and later retrieved to restore the state of the program.
# $Id$
-# Copyright W. Bangerth, University of Heidelberg, 2002
D = ..
######################### CLEAN TARGETS ###################
# clean everything
-clean: clean-objects clean-bin
+clean: clean-objects
# only clean object files, not libraries and executables
clean-objects: clean-debug clean-optimized \
-rm contrib/*/*.$(OBJEXT)
-rm -r contrib/tbb/*debug
-rm -r contrib/tbb/*release
- -rm libtbb*
-
-clean-bin:
- -rm bin/detached_ma27
- -rm bin/dealii_parameter_gui
distclean: clean
-rm -f lib* bin/*
+ -rm bin/detached_ma27
+ -rm bin/dealii_parameter_gui
+ -rm libtbb*
.PHONY: clean clean-objects
.PHONY: clean-base clean-lac clean-1d clean-2d clean-3d