summaryrefslogtreecommitdiff
path: root/service/things-manager/sampleapp/linux/makefile
blob: 092d768e04d29da7fb4e7d8beabea77b35e64d0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
MAKE=make

DIRLIST=configuration groupaction  groupsyncaction

# Force metatargets to build:
.PHONY: all clean

all: build

build:
	@for subdir in ${DIRLIST} ; do \
	${MAKE} -C $${subdir} ; \
	echo " " ; \
	done
	@echo " "

clean:
	@for subdir in ${DIRLIST} ; do \
	${MAKE} clean -C $${subdir} ; \
	echo " " ; \
	done