mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-03-07 15:56:27 +00:00
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 .
This commit is contained in:
@@ -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 += \
|
||||
|
||||
Reference in New Issue
Block a user