blob: 424d36476efaeecc2dc99df661dc9c7adfe8ecce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#----------------------------------------------------------------------------
# $Id$
#
# Common makefile definitions for all applications
#
#----------------------------------------------------------------------------
ifndef TAO_ROOT
TAO_ROOT = $(ACE_ROOT)/TAO
endif
LDFLAGS := $(patsubst -L$(ACE_ROOT)/ace, -L$(TAO_ROOT)/tao -L$(ACE_ROOT)/ace, $(LDFLAGS))
CPPFLAGS += -I$(TAO_ROOT) -I$(TAO_ROOT)/tao/compat $(TSS_ORB_FLAG)#-H
|