diff options
author | Lionel Landwerlin <[email protected]> | 2016-10-04 16:19:43 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2016-10-08 02:17:03 +0100 |
commit | 63a366a8813fec3836213cfd5ab006add332ec84 (patch) | |
tree | 1a063ce5fcdaa7bb449c05bedb02ed6ec3894cab /src/intel/Makefile.sources | |
parent | 4d7d9825f34a31368e63c493c28d57c8f84a984c (diff) |
intel: aubinator: generate a standalone binary
Embed the xml files into the binary, so aubinator can be used from any
location.
v2: Split generation packing into another patch (Jason)
Check for xxd (Jason)
v3: Fix out of tree builds (Jason)
Generate custom variable name rather than names generated by xxd
(Lionel)
v4: Move generated _xml.h files to genxml/ (Sirisha)
v5: Remove newline from makefile (Jason)
v6: Add comment on gen*_xml.h creation (Jason)
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/Makefile.sources')
-rw-r--r-- | src/intel/Makefile.sources | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/intel/Makefile.sources b/src/intel/Makefile.sources index 22ca63bc388..5b759bf98f0 100644 --- a/src/intel/Makefile.sources +++ b/src/intel/Makefile.sources @@ -21,7 +21,12 @@ GENXML_GENERATED_FILES = \ genxml/gen7_pack.h \ genxml/gen75_pack.h \ genxml/gen8_pack.h \ - genxml/gen9_pack.h + genxml/gen9_pack.h \ + genxml/gen6_xml.h \ + genxml/gen7_xml.h \ + genxml/gen75_xml.h \ + genxml/gen8_xml.h \ + genxml/gen9_xml.h ISL_FILES = \ isl/isl.c \ |