Chat-O-Matic/Makefile

30 lines
408 B
Makefile
Raw Normal View History

2021-05-19 16:12:19 -05:00
.DEFAULT_GOAL := default
2021-06-22 01:06:00 -05:00
app:
2021-05-19 16:12:19 -05:00
$(MAKE) -f application/Makefile
libs:
$(MAKE) -f libs/Makefile
irc:
$(MAKE) -f protocols/irc/Makefile
xmpp:
$(MAKE) -f protocols/xmpp/Makefile
purple:
ifneq ($(shell uname -m), x86_gcc2)
$(MAKE) -f protocols/purple/Makefile
endif
protocols: irc xmpp purple
2021-05-19 16:12:19 -05:00
2021-06-22 01:06:00 -05:00
all: libs protocols app
2021-05-19 16:12:19 -05:00
clean:
$(MAKE) -f application/Makefile clean
2021-05-19 16:12:19 -05:00
.PHONY: libs protocols
default: all