CXX=g++ CPPFLAGS=-Wall -pedantic -ansi default: make whatahshot install: -cp whatahshot /usr/bin user_install: -cp whatahshot ~/bin uninstall: -rm /usr/bin/whatahshot user_uninstall: -rm ~/bin/whatahshot whatahshot: whatahshot.cc ${CXX} ${CPPFLAGS} whatahshot.cc -o whatahshot .PHONY:clean clean: -rm whatahshot -f -rm whatahshot.e -f -rm whatahshot.o -f