mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-25 15:32:07 +00:00
21 lines
Makefile
21 lines
Makefile
|
all: ;
|
||
|
|
||
|
install:
|
||
|
$(MAKE) -C src $@
|
||
|
|
||
|
relabel: ;
|
||
|
|
||
|
clean:
|
||
|
$(MAKE) -C src $@
|
||
|
$(MAKE) -C tests $@
|
||
|
rm -f *~ *.pyc
|
||
|
rm -f parser.out parsetab.py
|
||
|
|
||
|
indent: ;
|
||
|
|
||
|
test:
|
||
|
$(MAKE) -C tests $@
|
||
|
|
||
|
|
||
|
|