--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/testexecmgmt/ucc/Source/HostExecuteAsync/Makefile Mon Mar 08 15:04:18 2010 +0800
@@ -0,0 +1,38 @@
+##########################################################################
+#
+# Makefile for ...
+#
+##########################################################################
+
+##########################################################################
+#
+# Definitions
+#
+##########################################################################
+TARGET= ../../bin/hostexecuteasync
+INCLUDES= -I../include
+OBJECTS= CSHostexecuteasync.o \
+ CSvcHostexecuteasync.o \
+ hostexecuteasync_svc.o \
+ hostexecuteasync_svc_stub_impl.o \
+ hostexecuteasync_xdr.o
+
+
+LIBS= -L../../BinInternal -lproc
+
+##########################################################################
+#
+# Rules
+#
+##########################################################################
+$(TARGET): $(OBJECTS) ../../BinInternal/libproc.a
+ g++ -gstabs -Wall -o $(TARGET) $(OBJECTS) $(LIBS)
+
+%.o: %.c
+ gcc -gstabs -Wall $(INCLUDES) -c $< -o $@
+
+%.o: %.cpp
+ g++ -gstabs -Wall $(INCLUDES) -c $< -o $@
+
+clean:
+ rm -r -f $(TARGET) *.o *~ dyntmp*