1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-05-13 02:53:19 +00:00

!add, !flags, !topic

This commit is contained in:
raylu 2010-10-16 15:38:40 -04:00
parent add4528312
commit ba455ac44f
6 changed files with 157 additions and 3 deletions

View file

@ -8,10 +8,11 @@ TARG=rbot
GOFILES=\
rbot.go\
handler.go\
auth.go
include $(GOROOT)/src/Make.cmd
all: rbot.conf
all: rbot.conf auth.conf
rbot.conf: rbot.conf.example
@if [ -f $@ ] ; then \
@ -20,3 +21,11 @@ rbot.conf: rbot.conf.example
echo cp $< $@ ; \
cp $< $@ ; \
fi
auth.conf: auth.conf.example
@if [ -f $@ ] ; then \
echo "auth.conf exists, but auth.conf.example is newer." ; \
else \
echo cp $< $@ ; \
cp $< $@ ; \
fi