C=gcc -c
CC=c++

all: pwrtmngr

pwrtmngr: pwrtmngr.cc
	$(CC) pwrtmngr.cc -o pwrtmngr

clean:
	rm -f *.o *~

clean_all:
	rm -f *.o *~
	rm -f pwrtmngr
