Brad Bishop | 40a360c | 2016-05-28 18:41:04 -0400 | [diff] [blame] | 1 | GDBUS_APPS = bmcctl \ |
Brad Bishop | 40a360c | 2016-05-28 18:41:04 -0400 | [diff] [blame] | 2 | flashbios \ |
Brad Bishop | 40a360c | 2016-05-28 18:41:04 -0400 | [diff] [blame] | 3 | op-flasher \ |
4 | op-hostctl \ | ||||
5 | op-pwrctl \ | ||||
6 | pciedetect \ | ||||
7 | pwrbutton \ | ||||
8 | rstbutton | ||||
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 9 | |
Yi Li | 2f3213f | 2016-08-03 11:09:55 +0800 | [diff] [blame] | 10 | SUBDIRS = fanctl \ |
Brad Bishop | 40a360c | 2016-05-28 18:41:04 -0400 | [diff] [blame] | 11 | ledctl \ |
12 | libopenbmc_intf \ | ||||
13 | pychassisctl \ | ||||
14 | pydownloadmgr \ | ||||
Brad Bishop | 40a360c | 2016-05-28 18:41:04 -0400 | [diff] [blame] | 15 | pyflashbmc \ |
Brad Bishop | 40a360c | 2016-05-28 18:41:04 -0400 | [diff] [blame] | 16 | pyinventorymgr \ |
17 | pyipmitest \ | ||||
18 | pysensormgr \ | ||||
19 | pystatemgr \ | ||||
20 | pysystemmgr \ | ||||
21 | pytools | ||||
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 22 | |
Brad Bishop | 6f4ba05 | 2016-06-27 13:45:18 -0400 | [diff] [blame] | 23 | REVERSE_SUBDIRS = $(shell echo $(SUBDIRS) $(GDBUS_APPS) | tr ' ' '\n' | tac |tr '\n' ' ') |
Norman James | ddb9738 | 2015-08-27 21:31:31 -0500 | [diff] [blame] | 24 | |
Brad Bishop | 6f4ba05 | 2016-06-27 13:45:18 -0400 | [diff] [blame] | 25 | .PHONY: subdirs $(SUBDIRS) $(GDBUS_APPS) |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 26 | |
Brad Bishop | 6f4ba05 | 2016-06-27 13:45:18 -0400 | [diff] [blame] | 27 | subdirs: $(SUBDIRS) $(GDBUS_APPS) |
Norman James | e276510 | 2015-08-19 22:00:55 -0500 | [diff] [blame] | 28 | |
Brad Bishop | 40a360c | 2016-05-28 18:41:04 -0400 | [diff] [blame] | 29 | $(SUBDIRS): |
30 | $(MAKE) -C $@ | ||||
Norman James | 1e25d1d | 2015-09-15 08:20:56 -0500 | [diff] [blame] | 31 | |
Brad Bishop | 40a360c | 2016-05-28 18:41:04 -0400 | [diff] [blame] | 32 | $(GDBUS_APPS): libopenbmc_intf |
Brad Bishop | 6f4ba05 | 2016-06-27 13:45:18 -0400 | [diff] [blame] | 33 | $(MAKE) -C $@ CFLAGS="-I ../$^" LDFLAGS="-L ../$^" |
Adriana Kobylak | 597d49e | 2015-10-29 08:33:03 -0500 | [diff] [blame] | 34 | |
Brad Bishop | 40a360c | 2016-05-28 18:41:04 -0400 | [diff] [blame] | 35 | install: subdirs |
Brad Bishop | 6f4ba05 | 2016-06-27 13:45:18 -0400 | [diff] [blame] | 36 | @for d in $(SUBDIRS) $(GDBUS_APPS); do \ |
Brad Bishop | 40a360c | 2016-05-28 18:41:04 -0400 | [diff] [blame] | 37 | $(MAKE) -C $$d $@ DESTDIR=$(DESTDIR) PREFIX=$(PREFIX) || exit 1; \ |
38 | done | ||||
39 | clean: | ||||
40 | @for d in $(REVERSE_SUBDIRS); do \ | ||||
41 | $(MAKE) -C $$d $@ || exit 1; \ | ||||
42 | done |