mirror of https://github.com/fluffle/goirc
Make it so one command builds everything
This commit is contained in:
parent
a537d1a9f6
commit
d38619843f
10
Makefile
10
Makefile
|
@ -9,7 +9,15 @@ GOFILES=rbot.go handler.go auth.go cmd-access.go cmd-admin.go cmd-op.go cmd-goog
|
|||
|
||||
include $(GOROOT)/src/Make.cmd
|
||||
|
||||
all: rbot.conf auth.conf
|
||||
.PHONY: client goconfig
|
||||
|
||||
all: rbot.conf auth.conf client goconfig
|
||||
|
||||
client:
|
||||
$(MAKE) -C client install
|
||||
|
||||
goconfig:
|
||||
$(MAKE) -C goconfig install
|
||||
|
||||
rbot.conf: rbot.conf.example
|
||||
@if [ -f $@ ] ; then \
|
||||
|
|
Loading…
Reference in New Issue