1# Copyright 2018 Oticon A/S
2# SPDX-License-Identifier: Apache-2.0
3
4BSIM_BASE_PATH?=$(abspath ../ )
5include ${BSIM_BASE_PATH}/common/pre.make.inc
6
72G4_libPhyComv1_COMP_PATH?=$(abspath ${BSIM_COMPONENTS_PATH}/ext_2G4_libPhyComv1)
8
9EXE_NAME:=bs_device_2G4_burst_interf
10SRCS:=src/bs_burstint_main.c \
11      src/bs_burstint_args.c
12A_LIBS:=${BSIM_LIBS_DIR}/libPhyComv1.a \
13        ${BSIM_LIBS_DIR}/libUtilv1.a \
14        ${BSIM_LIBS_DIR}/lib2G4PhyComv1.a
15INCLUDES:= -I${libUtilv1_COMP_PATH}/src/ \
16           -I${libPhyComv1_COMP_PATH}/src/ \
17           -I${2G4_libPhyComv1_COMP_PATH}/src
18
19SO_LIBS:=
20DEBUG:=-g
21OPT:=
22ARCH:=
23WARNINGS:=-Wall -pedantic
24COVERAGE:=
25CFLAGS:=${ARCH} ${DEBUG} ${OPT} ${WARNINGS} -MMD -MP -std=c99 ${INCLUDES}
26LDFLAGS:=${ARCH} ${COVERAGE}
27CPPFLAGS:=
28
29include ${BSIM_BASE_PATH}/common/make.device.inc
30