1# Generated automatically from Makefile.in by configure.
2RM      = /bin/rm -f
3SHELL   = /bin/sh
4
5default:
6	@echo "Choices are:"
7	@echo "make install       (install the PGAPack distribution)"
8	@echo "make clean         (return to the state just after configure was run)"
9	@echo "make spotless      (keep ONLY *.a and include files)"
10
11install:
12	@echo "Installing PGAPack . . ."
13	@cd source ; make
14	@echo "Installing Examples . . ."
15	@cd examples ; make
16	@echo "Installing Test program . . ."
17	@cd test ; make
18	@echo "Install successful."
19	@echo "	Please \"cd test\" and run the \"instverf\" program"
20	@echo "        to verify the correctness of your installation."
21
22clean:
23	@echo "Removing superfluous files . . ."
24	@$(RM) lib/*/*.o
25	@cd examples ; make clean
26	@cd test ; make clean
27
28spotless:
29	@echo "WARNING:  Removing docs, man, examples, and source directories"
30	@echo "          in 5 seconds!!"
31	@sleep 1
32	@echo " .. 4 .."
33	@sleep 1
34	@echo " .. 3 .."
35	@sleep 1
36	@echo " .. 2 .."
37	@sleep 1
38	@echo " .. 1 .."
39	@sleep 1
40	@echo " .. 0 .."
41	@echo " .. Removing everything except libraries and includes!!"
42	@sleep 1
43	@$(RM) -rf docs examples man source test util lib/*/*.o
44
45distribution:
46	@/home/pgapack/util/make_distribution
47
48