CFLAGS=-Wall -O6 -I /usr/include/freetype2
CC=gcc
FTOBJS = ftfile.o ftdraw.o

libft.a: $(FTOBJS)
	$(AR) rvc $@ $^

clean:
	rm -f *.o *.bak libft.a
