CC=gcc
CFLAGS=-Wall -Wextra

OBJS=test.o llist.o

all: test

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

test.o: test.c llist.h
llist.o: llist.c llist.h

clean:
	rm -f $(OBJS) test

.PHONY: all clean
