mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-25 17:59:25 +01:00
build: Make sure linux/kdbus.h is copied
This commit is contained in:
parent
3cbbe2cc42
commit
fc68ece8d2
12
Makefile.am
12
Makefile.am
@ -5,7 +5,7 @@ ACLOCAL_AMFLAGS = -I build-aux
|
|||||||
|
|
||||||
noinst_LTLIBRARIES = ell/libell-internal.la
|
noinst_LTLIBRARIES = ell/libell-internal.la
|
||||||
|
|
||||||
ell_sources = ell/ell.h ell/private.h ell/missing.h linux/kdbus.h \
|
ell_sources = ell/ell.h ell/private.h ell/missing.h \
|
||||||
ell/util.h ell/util.c \
|
ell/util.h ell/util.c \
|
||||||
ell/test.h ell/test.c \
|
ell/test.h ell/test.c \
|
||||||
ell/queue.h ell/queue.c \
|
ell/queue.h ell/queue.c \
|
||||||
@ -49,7 +49,9 @@ ell_sources = ell/ell.h ell/private.h ell/missing.h linux/kdbus.h \
|
|||||||
ell/uuid.h ell/uuid.c \
|
ell/uuid.h ell/uuid.c \
|
||||||
ell/key.h ell/key.c
|
ell/key.h ell/key.c
|
||||||
|
|
||||||
ell_libell_internal_la_SOURCES = $(ell_sources)
|
ell_linux_headers = linux/kdbus.h
|
||||||
|
|
||||||
|
ell_libell_internal_la_SOURCES = $(ell_sources) $(ell_linux_headers)
|
||||||
|
|
||||||
bin_PROGRAMS = src/iwd client/iwctl monitor/iwmon
|
bin_PROGRAMS = src/iwd client/iwctl monitor/iwmon
|
||||||
|
|
||||||
@ -199,6 +201,12 @@ ell/internal: Makefile
|
|||||||
$(LN_S) -t ell -f $(abs_srcdir)/../ell/$$f ; \
|
$(LN_S) -t ell -f $(abs_srcdir)/../ell/$$f ; \
|
||||||
fi \
|
fi \
|
||||||
done > $@
|
done > $@
|
||||||
|
$(AM_V_at)$(MKDIR_P) linux
|
||||||
|
$(AM_V_GEN)for f in $(ell_linux_headers) ; do \
|
||||||
|
if [ ! -f $$f ] ; then \
|
||||||
|
$(LN_S) -t linux -f $(abs_srcdir)/../ell/$$f ; \
|
||||||
|
fi \
|
||||||
|
done > $@
|
||||||
|
|
||||||
ell/unit/test_data: Makefile
|
ell/unit/test_data: Makefile
|
||||||
$(AM_V_at)$(MKDIR_P) ell/unit
|
$(AM_V_at)$(MKDIR_P) ell/unit
|
||||||
|
Loading…
Reference in New Issue
Block a user