mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-23 10:50:06 +01:00
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:
parent
4134acc614
commit
b66355e9ef
1 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue