Skip to content
Snippets Groups Projects
Commit 081128df authored by Patrick Robbe's avatar Patrick Robbe
Browse files

Fix C++ compilation

parent 7da06af7
No related branches found
No related tags found
1 merge request!56links
CC=gcc -fPIC -g
CFLAGS= -c -Wall
LDFLAGS=
GPP = g++ -fPIC
#defined global variables and programs to build
include Makefile.conf
......@@ -88,7 +88,7 @@ $(LTC2990_LIB) : $(LTC2990_OBJ)
$(LLI_DYNLIB) : $(ECS_OBJ) $(MINIPODS_OBJ)
@echo "Construction of dynamic LLI technical Library for V2"
mkdir -p lib
$(CC) -o $(LIB_DIR)$(LLI_DYNLIB) -shared $(ECS_OBJ) $(PLL_OBJ) $(MINIPODS_OBJ) $(B2LIB_OBJ) -L $(PCIE40_DYN_LIB) -lpcie40driver_ecs
$(GPP) -o $(LIB_DIR)$(LLI_DYNLIB) -shared $(ECS_OBJ) $(PLL_OBJ) $(MINIPODS_OBJ) $(B2LIB_OBJ) -L $(PCIE40_DYN_LIB) -lpcie40driver_ecs
@echo
clean: mrproper
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment