diff options
author | Emil Velikov <[email protected]> | 2014-09-21 16:31:14 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-09-24 10:44:01 +0100 |
commit | 3d909864c8006332aa4c2155356ec68fdc8dbc28 (patch) | |
tree | 0d4169d7131852ffa7384b4ba3a3c07ab1f23306 /src/gallium/drivers | |
parent | c2b5d7024e8b348fca5f666376d07685d1a45a8c (diff) |
gallium/vc4: add automake target 'templates'
Rather than duplicating the libdeps, extra define... all over the
targets, define them only once and use when applicable.
Signed-off-by: Emil Velikov <[email protected]>
Acked-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/vc4/Automake.inc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/gallium/drivers/vc4/Automake.inc b/src/gallium/drivers/vc4/Automake.inc new file mode 100644 index 00000000000..6fa3e190cac --- /dev/null +++ b/src/gallium/drivers/vc4/Automake.inc @@ -0,0 +1,13 @@ +if HAVE_GALLIUM_VC4 + +TARGET_DRIVERS += vc4 +TARGET_CPPFLAGS += -DGALLIUM_VC4 +TARGET_LIB_DEPS += \ + $(top_builddir)/src/gallium/winsys/vc4/drm/libvc4drm.la \ + $(top_builddir)/src/gallium/drivers/vc4/libvc4.la + +if USE_VC4_SIMULATOR +TARGET_CPPFLAGS += -DUSE_VC4_SIMULATOR +endif + +endif |