aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorMike Frysinger <vapier@chromium.org>2016-01-25 16:53:16 -0500
committerMike Frysinger <vapier@chromium.org>2016-01-25 16:53:16 -0500
commite4cf26b851122a930d003bf298b3f40bacb71ba2 (patch)
tree4b889637c9e484b387552be028210508ffeaa8a0 /Makefile.am
parenttests: unify duplicate build settings (diff)
downloadbreakpad-e4cf26b851122a930d003bf298b3f40bacb71ba2.tar.xz
linux_client_unittest_shlib: fix cleaning
The EXTRA_PROGRAMS knob does not automatically trigger clean up of targets listed in it. Use CLEANFILES so we make sure `make clean` will delete the linux_client_unittest_shlib lib. BUG=chromium:579384 TEST=`make check` passes R=mark@chromium.org Review URL: https://codereview.chromium.org/1618593002 .
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index e920be19..10d7a3ba 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -124,6 +124,8 @@ noinst_LIBRARIES =
lib_LIBRARIES =
bin_PROGRAMS =
check_PROGRAMS =
+EXTRA_PROGRAMS =
+CLEANFILES =
if !DISABLE_PROCESSOR
lib_LIBRARIES += src/libbreakpad.a
@@ -366,7 +368,9 @@ check_PROGRAMS += \
endif
if LINUX_HOST
-EXTRA_PROGRAMS = \
+EXTRA_PROGRAMS += \
+ src/client/linux/linux_client_unittest_shlib
+CLEANFILES += \
src/client/linux/linux_client_unittest_shlib
check_PROGRAMS += \