Skip to content

Commit

Permalink
Build appconfig files in default target
Browse files Browse the repository at this point in the history
Helps to clean up temporary files as normal user after
`sudo make install`, since otherwise these files would be created by
root.

Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
  • Loading branch information
cgzones committed Nov 5, 2024
1 parent 8d9865a commit 2df7a71
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Rules.modular
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,11 @@ vpath %.fc $(all_layers)
#
# default action: create all module packages
#
default: policy
default: all

all policy: base modules
all: policy $(builtappfiles)

policy: base modules

base: $(base_pkg)

Expand Down
4 changes: 3 additions & 1 deletion Rules.monolithic
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ vpath %.fc $(all_layers)
#
# default action: build policy locally
#
default: policy
default: all

all: policy $(builtappfiles)

policy: $(polver)

Expand Down

0 comments on commit 2df7a71

Please sign in to comment.