all: libhello.a

hello.o : hello.c
	gcc -Wall hello.c -c  -o hello.o

libhello.a:  hello.o
	ar -crs libhello.a hello.o

clean:
	rm -f hello *.o *.a *~
