testexecmgmt/ucc/Source/HostExecuteSimple/Makefile
author Johnson Ma <johnson.ma@nokia.com>
Mon, 08 Mar 2010 15:04:18 +0800
changeset 0 3da2a79470a7
permissions -rw-r--r--
Initial EPL Contribution

##########################################################################
#
# 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*