all : librtlinux.a

OBJS = rt_fifo.o
INCLUDE = .
CFLAGS = -O2 -c -Wall
CC = gcc -I${INCLUDE}

librtlinux.a : $(OBJS)
	ar -rcs librtlinux.a $(OBJS)

