summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/VisiBroker/base_server/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Cubit/VisiBroker/base_server/Makefile')
-rw-r--r--TAO/performance-tests/Cubit/VisiBroker/base_server/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/TAO/performance-tests/Cubit/VisiBroker/base_server/Makefile b/TAO/performance-tests/Cubit/VisiBroker/base_server/Makefile
new file mode 100644
index 00000000000..4b40c012e55
--- /dev/null
+++ b/TAO/performance-tests/Cubit/VisiBroker/base_server/Makefile
@@ -0,0 +1,21 @@
+# $Id$
+
+include stdmk
+
+EXE = server
+
+all: $(EXE)
+
+clean:
+ -rm -f core *.o cubitC.* cubitS.* $(EXE)
+ -rm -rf Templates.DB
+
+cubitS.cpp: cubit.idl
+ $(ORBCC) cubit.idl
+
+cubitC.cpp: cubit.idl
+ $(ORBCC) cubit.idl
+
+server: cubitS.o cubitC.o server.o Profile_Timer.o cubit_impl.o
+ $(CC) -o server cubitS.o cubitC.o cubit_impl.o server.o Profile_Timer.o \
+ $(LIBPATH) $(LIBORB) $(STDCC_LIBS)