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

Fix makefile

parent b253760b
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,9 @@ include Makefile.conf
#PCIE40_DYN_LIB=/usr/lib64
#PCIE40_STAT_LIB=/usr/lib64
PCIE40_INC_DIR=../DriverInterface
PCIE40_INC_DIR=../Driver
PCIE40_DYN_LIB=../Driver/pcie40
PCIE40_STAT_LIB=../Driver/pcie40
OBJ_DIR=obj/
SRC_DIR=src/
......@@ -113,9 +115,9 @@ $(USER_DYNLIB) : $(USER_OBJ)
$(LLI_DYNLIB) : $(ECS_OBJ) $(MINIPODS_OBJ)
@echo "Construction of dynamic LLI technical Library for V2"
# with locally built ecs library
# $(CC) -o $(LIB_DIR)$(LLI_DYNLIB) -shared $(ECS_OBJ) $(PLL_OBJ) $(MINIPODS_OBJ) $(PCIE40_DYN_LIB)
$(CC) -o $(LIB_DIR)$(LLI_DYNLIB) -shared $(ECS_OBJ) $(PLL_OBJ) $(MINIPODS_OBJ) -L $(PCIE40_DYN_LIB) -lpcie40_ecs
# with rpm installed ecs library
$(CC) -o $(LIB_DIR)$(LLI_DYNLIB) -shared $(ECS_OBJ) $(MINIPODS_OBJ) -lpcie40_ecs
# $(CC) -o $(LIB_DIR)$(LLI_DYNLIB) -shared $(ECS_OBJ) $(MINIPODS_OBJ) -lpcie40_ecs
@echo
clean: mrproper
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment