summaryrefslogtreecommitdiff
path: root/TAO/tests/Explicit_Event_Loop/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Explicit_Event_Loop/Makefile')
-rw-r--r--TAO/tests/Explicit_Event_Loop/Makefile86
1 files changed, 0 insertions, 86 deletions
diff --git a/TAO/tests/Explicit_Event_Loop/Makefile b/TAO/tests/Explicit_Event_Loop/Makefile
deleted file mode 100644
index 23e22ffe01b..00000000000
--- a/TAO/tests/Explicit_Event_Loop/Makefile
+++ /dev/null
@@ -1,86 +0,0 @@
-#----------------------------------------------------------------------------
-#
-# $Id$
-#
-#----------------------------------------------------------------------------
-
-#----------------------------------------------------------------------------
-# Local macros
-#----------------------------------------------------------------------------
-
-ifndef TAO_ROOT
- TAO_ROOT = $(ACE_ROOT)/TAO
-endif # ! TAO_ROOT
-
-
-
-LDLIBS = -lTAO
-IDL_SRC = timeC.cpp timeS.cpp
-IDL_HDR = timeC.h timeS.h
-
-PROG_SRCS = \
- client.cpp \
- server.cpp \
-
-SRC = $(IDL_SRC) $(PROG_SRCS)
-
-SIMPLE_CLT_OBJS = \
- timeC.o \
- timeS.o \
- client.o
-
-SIMPLE_SVR_OBJS = \
- timeC.o \
- timeS.o \
- server.o
-
-
-BIN = server \
- client
-BUILD = $(BIN)
-
-#----------------------------------------------------------------------------
-# 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
-#----------------------------------------------------------------------------
-.PRECIOUS: timeC.cpp timeC.i timeC.h
-.PRECIOUS: timeS.cpp timeS.i timeS.h
-.PRECIOUS: timeS_T.cpp timeS_T.i timeS_T.h
-
-#$(IDL_SRC): time.idl
-#$(TAO_ROOT)/TAO_IDL/tao_idl time.idl -hc .h -hs S.h -hT S_T.h \
-# -cs C.cpp \
-# -ss S.cpp -sT S_T.cpp
-
-server: $(addprefix $(VDIR),$(SIMPLE_SVR_OBJS))
- $(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
-
-client: $(addprefix $(VDIR),$(SIMPLE_CLT_OBJS))
- $(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)
-
-realclean: clean
- $(RM) -rf timeC.* timeS.* timeS_T.* time.h
-
-# DO NOT DELETE THIS LINE -- g++dep uses it.
-# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
-
-
-
-
-
-
-
-
-
-