From 956d114878f4278c0e87c394327e4cca0d3ac2f8 Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 11 Dec 1998 09:43:49 +0000 Subject: [PATCH] Add a Makefile to this directory, which only declares rules how to clean up. git-svn-id: https://svn.dealii.org/trunk@699 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/lib/Makefile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 deal.II/deal.II/lib/Makefile diff --git a/deal.II/deal.II/lib/Makefile b/deal.II/deal.II/lib/Makefile new file mode 100644 index 0000000000..6421f59c8c --- /dev/null +++ b/deal.II/deal.II/lib/Makefile @@ -0,0 +1,33 @@ +# $Id$ +# Copyright W. Bangerth, University of Heidelberg, 1998 + +# note that this file does not declare anything apart from +# clean-up rules. to compile the library, use the make file +# in the source subdir to re-make the libraries + + +default: + @echo "------------------------------------------" + @echo "There is no default rule in this Makefile." + @echo "------------------------------------------" + +# remove all object files, libraries and temporary (st*) files +clean: clean_1d clean_2d clean_3d + @echo "Cleaning present directory..." + -@rm -f st* lib* + +clean_1d: + @echo "Cleaning 1d directory..." + -@cd 1d ; rm -f o/*.o go/*.go + +clean_2d: + @echo "Cleaning 2d directory..." + -@cd 2d ; rm -f o/*.o go/*.go + +clean_3d: + @echo "Cleaning 3d directory..." + -@cd 3d ; rm -f o/*.o go/*.go + + + +.PHONY: clean_1d clean_2d clean_3d -- 2.39.5