# botblocker v1.0 Makefile.
#
# Remember to change the LIBS to point to your ddlib.h and dd.h
CC=		gcc -O2
INCL=		-I/home/bbs/include/
LIBS=		-L/home/bbs/lib/

all:	botblocker

%.o: %.c
	$(CC) -c $< $(INCL)

botblocker:	botblocker.o
	$(CC) -o $@ botblocker.o $(LIBS) -ldd

install:botblocker
	install -g bbs -o bbs botblocker /home/bbs/doors/

clean:
	rm -f *.o *~ botblocker
