

all: liblist.a

liblist.a: liblist.o
	ar rcs liblist.a liblist.o

liblist.o: liblist.c liblist.h
	gcc -c liblist.c -Wall -Werror



