include Makefile.inc

all : shm_task.o

shm_task.o : shm_task.c
	$(CC) -c $(RT_CFLAGS) $< -o $@

clean : 
	- \rm -f shm_task.o 
