diff -r 000000000000 -r 3da2a79470a7 testexecmgmt/ucc/Source/facontroller/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/testexecmgmt/ucc/Source/facontroller/Makefile Mon Mar 08 15:04:18 2010 +0800 @@ -0,0 +1,39 @@ +########################################################################## +# +# Makefile for ... +# +########################################################################## + +########################################################################## +# +# Definitions +# +########################################################################## +include /home/penuser/3GNetworkEmulator/Makefile.conf + +TARGET=../../bin/facontroller +INCLUDES= -I../include/ +OBJECTS= CSFacontroller.o \ + CSvcFacontroller.o \ + facontroller_svc.o \ + facontroller_svc_stub_impl.o \ + facontroller_xdr.o + +LIBS=-L../../BinInternal -lproc -ldynamicsconfig -lalias -lintalloc -ldynwrap + +########################################################################## +# +# Rules +# +########################################################################## +$(TARGET): $(OBJECTS) ../../BinInternal/libproc.a ../../BinInternal/libdynamicsconfig.a ../../BinInternal/libalias.a ../../BinInternal/libintalloc.a ../../BinInternal/libdynwrap.a + g++ $(CFLAGS) -o $(TARGET) $(OBJECTS) $(LIBS) + +%.o: %.c + gcc $(CFLAGS) $(INCLUDES) -c $< -o $@ + +%.o: %.cpp + g++ $(CFLAGS) $(INCLUDES) -c $< -o $@ + +clean: + rm -r -f $(TARGET) *.o *~ dyntmp*