all: rt_process.o

# you might have to change this

# the path to the rt-linux kernel 
RTLINUX = ../../../linux


CFLAGS = -O2 -Wall

rt_process.o: rt_process.c
	gcc -I${RTLINUX}/include ${CFLAGS} -D__KERNEL__ -D__RT__  -c rt_process.c

clean:
	rm -f rt_process.o
