CFLAGS	= -O2 -Wall
CC	= gcc
OBJS	= rstb_cleaner.o rstb_detector.o

all: rstb_detector rstb_cleaner

rstb_detector: rstb_detector.o
	$(CC) $(CFLAGS) -o $@ rstb_detector.c

rstb_cleaner: rstb_cleaner.o
	$(CC) $(CFLAGS) -o $@ rstb_cleaner.c

clean:
	rm rstb_cleaner rstb_detector
	rm *.o
