diff options
author | John Turner <jturner.usa@gmail.com> | 2025-08-14 19:32:49 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-08-14 19:52:47 -0400 |
commit | 9705252dd1b811f0baa1ea22cc740ccad6140a95 (patch) | |
tree | 8e78715e1b9973b857015f56e4c60e5d5ce836ec /src/file/meson.build | |
parent | d4c6a296a121c4f5fcebbc6d28af2ad1be669bd8 (diff) | |
download | selinux-policy-9705252dd1b811f0baa1ea22cc740ccad6140a95.tar.gz |
rewrite build system with meson
Diffstat (limited to 'src/file/meson.build')
-rw-r--r-- | src/file/meson.build | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/file/meson.build b/src/file/meson.build new file mode 100644 index 0000000..161f52a --- /dev/null +++ b/src/file/meson.build @@ -0,0 +1,27 @@ +modules += files( + 'authfile.cil', + 'bootfile.cil', + 'bootflagfile.cil', + 'certfile.cil', + 'conffile.cil', + 'datafile.cil', + 'devfile.cil', + 'homefile.cil', + 'hugetlbfsfile.cil', + 'mqueuefsfile.cil', + 'runfile.cil', + 'secfile.cil', + 'tmpfile.cil', + 'tmpfsfile.cil', + 'varfile.cil', +) + +subdir('datafile') +subdir('homefile') +subdir('hugetlbfsfile') +subdir('misc') +subdir('mqueuefsfile') +subdir('runfile') +subdir('tmpfile') +subdir('tmpfsfile') +subdir('varfile') |