diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-24 16:53:27 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-01-24 16:53:27 +0000 |
commit | b4383ddcb513a532f644f5e07ee9af038c67ed40 (patch) | |
tree | 4232a1221f83956ea047668a0ff601d1a5547462 /TAO/taoconfig.mk | |
parent | 98c6c8b0f48df45bd8ccc51c5c207c92fe219199 (diff) | |
download | ATCD-b4383ddcb513a532f644f5e07ee9af038c67ed40.tar.gz |
ChangeLogTag:Sat Jan 24 10:30:40 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/taoconfig.mk')
-rw-r--r-- | TAO/taoconfig.mk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/TAO/taoconfig.mk b/TAO/taoconfig.mk new file mode 100644 index 00000000000..dd5628d0a45 --- /dev/null +++ b/TAO/taoconfig.mk @@ -0,0 +1,16 @@ +#---------------------------------------------------------------------------- +# $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 + +clean: + -/bin/rm -rf *.o Log $(BIN) obj.* core Templates.DB .make.state |