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
7SRCS:=src/bs_rand_main.c
8INCLUDES:= -I${libUtilv1_COMP_PATH}/src/
9LIB_NAME:=libRandv2
10A_LIBS:=
11A_LIBS32:=
12SO_LIBS:=
13DEBUG:=-g
14OPT:=-O2 #Random generation is the bottelneck for the 2G4 indoor channel
15ARCH:=
16WARNINGS:=-Wall -pedantic
17COVERAGE:=
18CFLAGS:=${ARCH} ${DEBUG} ${OPT} ${WARNINGS} -MMD -MP -std=c99  -fPIC ${INCLUDES}
19LDFLAGS:=${ARCH} ${COVERAGE}
20CPPFLAGS:= -D_XOPEN_SOURCE=700
21
22include ${BSIM_BASE_PATH}/common/make.lib_a64et32.inc
23