12 lines
134 B
Makefile
12 lines
134 B
Makefile
.DEFAULT_GOAL := default
|
|
|
|
irc:
|
|
$(MAKE) -f protocols/irc/Makefile
|
|
|
|
xmpp:
|
|
$(MAKE) -f protocols/xmpp/Makefile
|
|
|
|
all: xmpp
|
|
|
|
default: all
|