mirror of
https://github.com/SELinuxProject/refpolicy
synced 2025-03-25 04:26:37 +00:00
Merge pull request #60 from bigon/iftemplates
Makefile: Avoid regenerating the iftemplates at everyrun
This commit is contained in:
commit
367fee0c01
6
Makefile
6
Makefile
@ -415,15 +415,17 @@ $(fcsort) : $(support)/fc_sort.c
|
||||
#
|
||||
# Documentation generation
|
||||
#
|
||||
iftemplates:
|
||||
iftemplates: $(tmpdir)/iftemplates
|
||||
$(tmpdir)/iftemplates:
|
||||
@echo "Generating interface templates into $(tmpdir)/iftemplates"
|
||||
@test -d $(tmpdir)/iftemplates || mkdir -p $(tmpdir)/iftemplates
|
||||
$(verbose) $(gentemplates) -g -s $(moddir) -t $(tmpdir)/iftemplates
|
||||
ifdef LOCAL_ROOT
|
||||
$(verbose) $(gentemplates) -g -s $(local_moddir) -t $(tmpdir)/iftemplates
|
||||
endif
|
||||
@touch $(tmpdir)/iftemplates
|
||||
|
||||
$(layerxml): %.xml: iftemplates $(all_metaxml) $(filter $(addprefix $(moddir)/, $(notdir $*))%, $(detected_mods)) $(subst .te,.if, $(filter $(addprefix $(moddir)/, $(notdir $*))%, $(detected_mods)))
|
||||
$(layerxml): %.xml: $(tmpdir)/iftemplates $(all_metaxml) $(filter $(addprefix $(moddir)/, $(notdir $*))%, $(detected_mods)) $(subst .te,.if, $(filter $(addprefix $(moddir)/, $(notdir $*))%, $(detected_mods)))
|
||||
@test -d $(tmpdir) || mkdir -p $(tmpdir)
|
||||
$(verbose) cat $(filter %$(notdir $*)/$(metaxml), $(all_metaxml)) > $@
|
||||
$(verbose) for i in $(basename $(filter $(addprefix $(moddir)/, $(notdir $*))%, $(detected_mods))); do $(genxml) -w -T $(tmpdir)/iftemplates -m $$i >> $@; done
|
||||
|
Loading…
Reference in New Issue
Block a user