newsbot/bin/
newsbot/src/
CC = g++

W_FLAGS = -Wall -Wformat-security -Winline -Wshadow -Wpointer-arith -Wcast-align -Wcast-qual -Wredundant-decls

CFLAGS = -g2 -Os -DIMCSTANDALONE $(W_FLAGS)
LFLAGS = -g2

all:    imc.o md5.o
	rm -f rss
	$(CC) $(CFLAGS) -o rss imc.o md5.o $(LFLAGS)

clean:
	rm -f *.o rss core
	make all

purge:
	rm -f *.o rss core