From 7f00420c23e31db8b519ea7d665e5a74f3d9d980 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Mon, 12 Feb 2018 01:39:12 -0700 Subject: [PATCH] Add cleaning for example files --- examples/.gitignore | 6 ++++++ examples/Makefile | 16 ++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 examples/Makefile diff --git a/examples/.gitignore b/examples/.gitignore index 5ab3ae0..c6c71e3 100644 --- a/examples/.gitignore +++ b/examples/.gitignore @@ -15,3 +15,9 @@ b2/src/*.o */MapUser1 b9/src/*.o b7/MAPUser1 +b9/snark_e.in +b9/snark_e.out +b9/fomfil.1 +b9/MAPUser1 +*/snark.lock +b9/testem.1 diff --git a/examples/Makefile b/examples/Makefile new file mode 100644 index 0000000..f5c92f9 --- /dev/null +++ b/examples/Makefile @@ -0,0 +1,16 @@ +.PHONY: all run_all regression + +all: + @echo "Use run_all or regression" + +run_all: + ./run_all + +regression: + ./regression + +clean: + @rm -f */b[0-9].out */b1[0-9].out */file11 */prjfil */recfil */eval */src/.o b1/punch b10/eval \ + b11/RPRTsuperiorization b11/RPRTklds */MAPUser1 b9/src/*.o b9/snark_e.in b9/snark_e.out \ + b9/testem.1 b9/fomfil.1 */snark.lock */bin/* + -- 2.34.1