summaryrefslogtreecommitdiff
path: root/TAO/tests/AMI/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/AMI/Makefile')
-rw-r--r--TAO/tests/AMI/Makefile66
1 files changed, 0 insertions, 66 deletions
diff --git a/TAO/tests/AMI/Makefile b/TAO/tests/AMI/Makefile
deleted file mode 100644
index c606a29fd85..00000000000
--- a/TAO/tests/AMI/Makefile
+++ /dev/null
@@ -1,66 +0,0 @@
-#----------------------------------------------------------------------------
-#
-# $Id$
-#
-#----------------------------------------------------------------------------
-
-#----------------------------------------------------------------------------
-# Local macros
-#----------------------------------------------------------------------------
-
-ifndef TAO_ROOT
- TAO_ROOT = $(ACE_ROOT)/TAO
-endif # ! TAO_ROOT
-
-LDLIBS = -lTAO
-
-IDL_FILES = ami_test
-
-IDL_SRCS = $(addsuffix C, $(IDL_FILES)) \
- $(addsuffix S, $(IDL_FILES))
-
-BIN = server simple_client client
-
-CLIENT_OBJS = $(addsuffix .o, $(IDL_SRCS)) client.o
-SIMPLE_CLIENT_OBJS = $(addsuffix .o, $(IDL_SRCS)) simple_client.o
-SERVER_OBJS = $(addsuffix .o, $(IDL_SRCS)) server.o ami_test_i.o
-
-#----------------------------------------------------------------------------
-# Include macros and targets
-#----------------------------------------------------------------------------
-
-include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
-include $(ACE_ROOT)/include/makeinclude/macros.GNU
-include $(TAO_ROOT)/rules.tao.GNU
-include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
-include $(ACE_ROOT)/include/makeinclude/rules.nonested.GNU
-include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
-include $(TAO_ROOT)/taoconfig.mk
-
-#----------------------------------------------------------------------------
-# Local targets
-#----------------------------------------------------------------------------
-
-override TAO_IDLFLAGS += -Ge 1 -GC
-
-.PRECIOUS: $(foreach ext, $(IDL_EXT), test$(ext))
-
-all: server client simple_client
-
-server: $(addprefix $(VDIR),$(SERVER_OBJS))
- $(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
-
-client: $(addprefix $(VDIR),$(CLIENT_OBJS))
- $(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
-
-simple_client: $(addprefix $(VDIR),$(SIMPLE_CLIENT_OBJS))
- $(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
-
-realclean: clean
- -$(RM) $(foreach ext, $(IDL_EXT), ami_test$(ext))
-
-# DO NOT DELETE THIS LINE -- g++dep uses it.
-# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
-
-
-# IF YOU PUT ANYTHING HERE IT WILL GO AWAY