mirror of
https://github.com/fluffle/goirc
synced 2025-05-13 02:53:19 +00:00
!add, !flags, !topic
This commit is contained in:
parent
add4528312
commit
ba455ac44f
6 changed files with 157 additions and 3 deletions
11
Makefile
11
Makefile
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue