aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/freedreno/Makefile.am
diff options
context:
space:
mode:
authorJohannes Obermayr <[email protected]>2013-11-01 18:38:14 +0000
committerEmil Velikov <[email protected]>2013-11-16 14:00:16 +0000
commit595bd01eb1ab6df4d0454b4f9b158256be274bef (patch)
tree0926c0085c7fa3eb112134bc5b2cff4b6466e5b2 /src/gallium/drivers/freedreno/Makefile.am
parentc5062726f1da77139d3fc576536eb431bbeb9c0e (diff)
freedreno: compact a2xx and a3xx makefiles into parent ones
Nearly everything within the three Makefile.am's is identical. Let's simplify things a little. v2: Rebase and rewrite the commit message (Emil Velikov) Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/Makefile.am')
-rw-r--r--src/gallium/drivers/freedreno/Makefile.am12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/gallium/drivers/freedreno/Makefile.am b/src/gallium/drivers/freedreno/Makefile.am
index 9f5a80af979..22fd790dcdc 100644
--- a/src/gallium/drivers/freedreno/Makefile.am
+++ b/src/gallium/drivers/freedreno/Makefile.am
@@ -12,11 +12,7 @@ AM_CFLAGS = \
$(FREEDRENO_CFLAGS) \
$(VISIBILITY_CFLAGS)
-SUBDIRS = a2xx a3xx
-
-libfreedreno_la_SOURCES = $(C_SOURCES)
-
-libfreedreno_la_LIBADD = \
- a3xx/libfd3xx.la \
- a2xx/libfd2xx.la
-
+libfreedreno_la_SOURCES = \
+ $(C_SOURCES) \
+ $(a2xx_SOURCES) \
+ $(a3xx_SOURCES)