diff -r 000000000000 -r 3da2a79470a7 testexecmgmt/ucc/Source/HostExecuteSimple/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/testexecmgmt/ucc/Source/HostExecuteSimple/Makefile Mon Mar 08 15:04:18 2010 +0800 @@ -0,0 +1,39 @@ +########################################################################## +# +# Makefile for ... +# +########################################################################## + +########################################################################## +# +# Definitions +# +########################################################################## +TARGET= ../../bin/hostexecute +INCLUDES= -I../include +OBJECTS= CSHostexecute.o \ + CSvcHostexecute.o \ + hostexecute_svc.o \ + hostexecute_svc_stub_impl.o \ + hostexecute_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*