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:=$(shell ls src/*.c)
8
9INCLUDES:=-I${libUtilv1_COMP_PATH}/src/
10
11LIB_NAME:=libPhyComv1
12A_LIBS:=
13A_LIBS32:=
14SO_LIBS:=
15DEBUG:=-g
16OPT:=
17ARCH:=
18WARNINGS:=-Wall -pedantic
19COVERAGE:=
20CFLAGS:=${ARCH} ${DEBUG} ${OPT} ${WARNINGS} -MMD -MP -std=c99  -fPIC ${INCLUDES}
21LDFLAGS:=${ARCH} ${COVERAGE}
22CPPFLAGS:= -D_XOPEN_SOURCE=700
23
24include ${BSIM_BASE_PATH}/common/make.lib_soeta64et32.inc
25