092d768e04d29da7fb4e7d8beabea77b35e64d0f
[platform/upstream/iotivity.git] / service / things-manager / sampleapp / linux / makefile
1 MAKE=make
2
3 DIRLIST=configuration groupaction  groupsyncaction
4
5 # Force metatargets to build:
6 .PHONY: all clean
7
8 all: build
9
10 build:
11         @for subdir in ${DIRLIST} ; do \
12         ${MAKE} -C $${subdir} ; \
13         echo " " ; \
14         done
15         @echo " "
16
17 clean:
18         @for subdir in ${DIRLIST} ; do \
19         ${MAKE} clean -C $${subdir} ; \
20         echo " " ; \
21         done