CFLAGS+=-O2 -g -I../../module

PROG=	rtdelete
SRCS=	rtdelete.c

OBJS=	$(SRCS:.c=.o)

all:	$(PROG)

$(PROG):	$(OBJS)

clean:
	rm -f *.o core $(PROG)
