From e3f225cd4fb60437d94288849f7af03179d56f6b Mon Sep 17 00:00:00 2001 From: Manuel Traut Date: Thu, 7 Jun 2012 16:00:59 +0200 Subject: retriving digital ios inside a device works now Signed-off-by: Manuel Traut --- common/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'common/Makefile') diff --git a/common/Makefile b/common/Makefile index c869a74..27498ac 100644 --- a/common/Makefile +++ b/common/Makefile @@ -7,8 +7,9 @@ DISTRIO_BASE = ../ DISTRIO_IO = $(DISTRIO_BASE)io/lib DISTRIO_MANAGER = $(DISTRIO_BASE)manager/lib -CFLAGS += -fPIC -I. -I$(DISTRIO_IO) -I$(DISTRIO_MANAGER) +CFLAGS += -g -fPIC -I. -I$(DISTRIO_IO) -I$(DISTRIO_MANAGER) CXXFLAGS += $(CFLAGS) +LDFLAGS += -lrt TAO_IDL := tao_idl @@ -22,7 +23,7 @@ IDL_CLEANFILES = $(COMPONENT)C.cpp $(COMPONENT)C.inl $(COMPONENT)I.h \ $(COMPONENT)S.h $(COMPONENT)C.h $(COMPONENT)S.cpp all: $(OBJ) - $(LD) -shared -o $(LIB) $(OBJ) + $(LD) $(LDFLAGS) -shared -o $(LIB) $(OBJ) .PHONY: idl idl: -- cgit v1.2.3