platform: use platform sources even for testing tools
This (together with a patch adding src/platform/Makefile.am) allows for a workflow where your working directory is src/platform and all tests and testing tools are rebuilt with your src/platform modifications.
This commit is contained in:
@@ -35,15 +35,15 @@ noinst_PROGRAMS = \
|
|||||||
|
|
||||||
EXTRA_DIST = test-common.h
|
EXTRA_DIST = test-common.h
|
||||||
|
|
||||||
monitor_SOURCES = monitor.c
|
monitor_SOURCES = monitor.c $(PLATFORM_SOURCES)
|
||||||
monitor_CPPFLAGS = $(AM_CPPFLAGS)
|
monitor_CPPFLAGS = $(AM_CPPFLAGS)
|
||||||
monitor_LDADD = $(PLATFORM_LDADD)
|
monitor_LDADD = $(PLATFORM_LDADD)
|
||||||
|
|
||||||
dump_SOURCES = dump.c
|
dump_SOURCES = dump.c $(PLATFORM_SOURCES)
|
||||||
dump_CPPFLAGS = $(AM_CPPFLAGS)
|
dump_CPPFLAGS = $(AM_CPPFLAGS)
|
||||||
dump_LDADD = $(PLATFORM_LDADD)
|
dump_LDADD = $(PLATFORM_LDADD)
|
||||||
|
|
||||||
platform_SOURCES = platform.c
|
platform_SOURCES = platform.c $(PLATFORM_SOURCES)
|
||||||
platform_CPPFLAGS = $(AM_CPPFLAGS)
|
platform_CPPFLAGS = $(AM_CPPFLAGS)
|
||||||
platform_LDADD = $(PLATFORM_LDADD)
|
platform_LDADD = $(PLATFORM_LDADD)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user