all: power

clean:
	rm -f power matlib.o

power: power.c matlib.o
	gcc -o power power.c matlib.o -lm

matlib.o: matlib.c matlib.h
	gcc -c matlib.c
