9 lines
181 B
Makefile
9 lines
181 B
Makefile
|
|
SUBDIRS = semodule_package semodule_link semodule_expand
|
||
|
|
|
||
|
|
all install relabel clean indent:
|
||
|
|
@for subdir in $(SUBDIRS); do \
|
||
|
|
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
||
|
|
done
|
||
|
|
|
||
|
|
test:
|