summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/Makefile
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-03-07 16:20:53 +0100
committerHarald Welte <laforge@gnumonks.org>2010-03-07 16:20:53 +0100
commitf5cd361f8ed711c04768228b319aad0e311b94d8 (patch)
tree7f208ac87cfbd0191a75a9510da752727ab2cac3 /src/target/firmware/Makefile
parent98cc91c44ad67d2bdc557e597866102ae40f611a (diff)
actually link against libosmocore for the target
Diffstat (limited to 'src/target/firmware/Makefile')
-rw-r--r--src/target/firmware/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/firmware/Makefile b/src/target/firmware/Makefile
index aef1d42b..bf819e7c 100644
--- a/src/target/firmware/Makefile
+++ b/src/target/firmware/Makefile
@@ -1,6 +1,6 @@
# Global include path
-INCLUDES=-Iinclude/ -I../../../include
+INCLUDES=-Iinclude/ -I../../../include -I../../shared/libosmocore/build-target/include
# Various objects that are currently linked into all applications
FLASH_OBJS=flash/cfi_flash.o
@@ -20,7 +20,7 @@ APPLICATIONS=hello_world l1test compal_dump compal_dsp_dump layer1 loader
# Things that go in all applications
ANY_APP_OBJS+=$(START:.S=.o) $(ABB_OBJS) $(RF_OBJS) $(DISPLAY_OBJS) $(FLASH_OBJS)
-ANY_APP_LIBS+=calypso/libcalypso.a layer1/liblayer1.a lib/libmini.a comm/libcomm.a
+ANY_APP_LIBS+=calypso/libcalypso.a layer1/liblayer1.a lib/libmini.a comm/libcomm.a ../../shared/libosmocore/build-target/src/.libs/libosmocore.a
# Libraries are defined in subdirectories
-include calypso/Makefile