-
Notifications
You must be signed in to change notification settings - Fork 70
/
Makefile
28 lines (23 loc) · 894 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# piaware client-side top-level Makefile
#
# The sub-makefiles understand these variables:
# DESTDIR: a prefix put before all destination paths when installing (used for packaging)
# PREFIX: the base directory to install to, defaults to /usr
# TCLLAUNCHER: path to a tcllauncher binary to install, defaults to tcllauncher from $PATH
# TCLSH: path to a tclsh to use to build package indexes, defaults to tclsh/tcl8.5/tcl8.6 from $PATH
#
# (also see scripts/Makefile for systemd/sysvinit install options)
all:
@echo "'make install' as root to install client package and program"
install:
$(MAKE) -C package install
$(MAKE) -C programs/piaware install
$(MAKE) -C programs/piaware-config install
$(MAKE) -C programs/piaware-status install
$(MAKE) -C programs/pirehose install
$(MAKE) -C doc install
$(MAKE) -C scripts install
$(MAKE) -C etc install
clean:
$(MAKE) -C package clean