9 lines
93 B
Makefile
9 lines
93 B
Makefile
|
.DEFAULT_GOAL := default
|
||
|
|
||
|
xmpp:
|
||
|
$(MAKE) -f protocols/xmpp/Makefile
|
||
|
|
||
|
all: xmpp
|
||
|
|
||
|
default: all
|