blob: d5bb40f6972251b8429f114bbd3cf9beecf9783f (
plain)
1
2
3
4
5
6
7
8
9
|
DAEMONS=audio backup cli config curses-ui database input-device invoice mail pdf-invoice pdf-stock pgp scanner-session serial-device input-device web
all:
@$(foreach dir,$(DAEMONS),cd $(dir) && echo "Building $(dir)..." && make --no-print-directory all ; cd ..;)
clean:
@$(foreach dir,$(DAEMONS),cd $(dir) && make --no-print-directory clean ; cd ..;)
.PHONY: all clean
|