CC=gcc
CFLAGS=-Wall -Wextra

OBJS=test.o llist.o

all: test

test: $(OBJS)
	gcc -o $@ $^

test.o: test.c

llist.o: llist.c llist.h

clean:
	rm -f $(OBJS)
	rm -f test

.PHONY: all, clean
