diff options
author | Eric Anholt <[email protected]> | 2018-01-09 15:13:27 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-01-12 21:55:38 -0800 |
commit | 409696b76eec160e2f70c30bdca50a1a236d0149 (patch) | |
tree | b5945ed0d607e07918f11298c46e918387bec478 /src/broadcom/Makefile.vc5.am | |
parent | 90269ba353333be13e54549ecff3adb8803661db (diff) |
broadcom/vc5: Move the body of CLIF dumping to a per-version file.
I want the library's entrypoints to still be unversioned, but the actual
packet dumping needs to be per-version.
Diffstat (limited to 'src/broadcom/Makefile.vc5.am')
-rw-r--r-- | src/broadcom/Makefile.vc5.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/broadcom/Makefile.vc5.am b/src/broadcom/Makefile.vc5.am index 3e8e28bc947..067da49f9e2 100644 --- a/src/broadcom/Makefile.vc5.am +++ b/src/broadcom/Makefile.vc5.am @@ -1,10 +1,14 @@ noinst_LTLIBRARIES += libbroadcom.la +noinst_LTLIBRARIES += libbroadcom_v33.la if USE_VC5_SIMULATOR AM_CFLAGS += $(VC5_SIMULATOR_CFLAGS) libbroadcom_la_LDFLAGS = $(VC5_SIMULATOR_LIBS) endif +libbroadcom_v33_la_SOURCES = $(BROADCOM_PER_VERSION_SOURCES) +libbroadcom_v33_la_CFLAGS = -DV3D_VERSION=33 + libbroadcom_la_SOURCES = $(BROADCOM_FILES) check_PROGRAMS += \ |