https://hal.archives-ouvertes.fr/hal-03445804
Makefile.config.linux
# C Compiler
CC=gcc
# archiver
AR=ar
# paths to SCEDA
ifdef LIBHOME
SCEDA?=$(LIBHOME)
else
SCEDA?=$(HOME)/SCEDA
endif
# libSCEDA
SCEDA_CPPFLAGS=-I$(SCEDA)/include
SCEDA_LDFLAGS=-L$(SCEDA)/lib -lSCEDA
# libXML
ENABLE_XML_PARSER?=yes
ifeq ($(ENABLE_XML_PARSER),yes)
XML_CPPFLAGS= `xml2-config --cflags`
XML_LDFLAGS= `xml2-config --libs`
else
XML_CPPFLAGS=
XML_LDFLAGS=
endif
# C Compiler flags
CFLAGS=-O3 -Wall
CPPFLAGS=$(XML_CPPFLAGS) $(SCEDA_CPPFLAGS)
LDFLAGS=$(XML_LDFLAGS) $(SCEDA_LDFLAGS)
# Doxygen command
DOXYGEN=doxygen
# Target installation prefix
TARGET?=./build.linux