CC=cc
CFLAGS=-Ofast -Werror -Wall -Wextra -pedantic -std=c99
LIBS=-lcallback
dirnav.o: dirnav.c
cc -c $(CFLAGS) $^ $(LIBS) -o $@
test: dirnav.o test.o
cc $(CFLAGS) $^ -lcallback -o $@
./test
clean:
rm test *.o