osmocon: Makefile.am: Fix build using different path

Change-Id: I1a322e364612976f3d797f25e57ccc7c2354bd5e
This commit is contained in:
Pau Espin 2018-05-22 16:04:06 +02:00
parent c343d730f6
commit 9533aa7002
1 changed files with 3 additions and 3 deletions

View File

@ -13,9 +13,9 @@ AM_CFLAGS=-Wall $(LIBOSMOCORE_CFLAGS)
sbin_PROGRAMS = osmocon osmoload
# FIXME: sercomm needs to move into libosmocore or another shared lib
INCLUDES += -I../../target/firmware/include/comm -I../../target/firmware/apps -DHOST_BUILD
osmocon_SOURCES = osmocon.c tpu_debug.c ../../target/firmware/comm/sercomm.c
INCLUDES += -I$(srcdir)/../../target/firmware/include/comm -I$(srcdir)/../../target/firmware/apps -DHOST_BUILD
osmocon_SOURCES = osmocon.c tpu_debug.c $(srcdir)/../../target/firmware/comm/sercomm.c
osmocon_LDADD = $(LIBOSMOCORE_LIBS)
osmoload_SOURCE = osmoload.c ../../target/firmware/comm/sercomm.c
osmoload_SOURCE = osmoload.c $(srcdir)/../../target/firmware/comm/sercomm.c
osmoload_LDADD = $(LIBOSMOCORE_LIBS)