diff options
author | Lionel Landwerlin <[email protected]> | 2017-03-10 16:14:43 +0000 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-03-13 13:36:31 +0000 |
commit | 3278cd7610588d28a895c2e2ca86aeaa39df9a1e (patch) | |
tree | b7c6da1f5becb080a9204b70e219e0e16bb46324 /src/intel/Makefile.tools.am | |
parent | 351c951e095db47c7cf91b77838d2a7333d775a8 (diff) |
aubinator/genxml: use gzipped files to store embedded genxml
This reduces the size of the aubinator binary from ~1.4Mb to ~700Kb.
With can now drop the checks on xxd in configure.
v2: Fix incorrect makefile dependency (Lionel)
v3: use $(PYTHON2) (Emil)
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/intel/Makefile.tools.am')
-rw-r--r-- | src/intel/Makefile.tools.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/intel/Makefile.tools.am b/src/intel/Makefile.tools.am index 5838819f255..3c98c81c876 100644 --- a/src/intel/Makefile.tools.am +++ b/src/intel/Makefile.tools.am @@ -30,7 +30,8 @@ tools_aubinator_SOURCES = \ tools_aubinator_CFLAGS = \ $(AM_CFLAGS) \ - $(EXPAT_CFLAGS) + $(EXPAT_CFLAGS) \ + $(ZLIB_CFLAGS) tools_aubinator_LDADD = \ common/libintel_common.la \ @@ -40,4 +41,5 @@ tools_aubinator_LDADD = \ $(PTHREAD_LIBS) \ $(DLOPEN_LIBS) \ $(EXPAT_LIBS) \ + $(ZLIB_LIBS) \ -lm |